WebAclHeaderMatchPattern

data class WebAclHeaderMatchPattern(val all: Any? = null, val excludedHeaders: List<String>? = null, val includedHeaders: List<String>? = null)

The pattern to look for in the request headers.

Constructors

Link copied to clipboard
constructor(all: Any? = null, excludedHeaders: List<String>? = null, includedHeaders: List<String>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val all: Any? = null

Inspect all parts of the web request headers.

Link copied to clipboard

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

Link copied to clipboard

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