RuleGroupHeaderMatchPatternArgs

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

The pattern to look for in the request headers.

Constructors

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

Properties

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

Inspect all parts of the web request headers.

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

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

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

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

Functions

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