WebAclCookieMatchPatternArgs

data class WebAclCookieMatchPatternArgs(val all: Output<Any>? = null, val excludedCookies: Output<List<String>>? = null, val includedCookies: Output<List<String>>? = null) : ConvertibleToJava<WebAclCookieMatchPatternArgs>

The pattern to look for in the request cookies.

Constructors

Link copied to clipboard
constructor(all: Output<Any>? = null, excludedCookies: Output<List<String>>? = null, includedCookies: Output<List<String>>? = null)

Properties

Link copied to clipboard
val all: Output<Any>? = null

Inspect all parts of the web request cookies.

Link copied to clipboard
val excludedCookies: Output<List<String>>? = null

Inspect only the cookies whose keys don't match any of the strings specified here.

Link copied to clipboard
val includedCookies: Output<List<String>>? = null

Inspect only the cookies that have a key that matches one of the strings specified here.

Functions

Link copied to clipboard
open override fun toJava(): WebAclCookieMatchPatternArgs