Interface CfnRuleGroup.CookieMatchPatternProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRuleGroup.CookieMatchPatternProperty.Jsii$Proxy
- Enclosing class:
- CfnRuleGroup
@Stability(Stable)
public static interface CfnRuleGroup.CookieMatchPatternProperty
extends software.amazon.jsii.JsiiSerializable
The filter to use to identify the subset of cookies to inspect in a web request.
You must specify exactly one setting: either All
, IncludedCookies
, or ExcludedCookies
.
Example JSON: "MatchPattern": { "IncludedCookies": {"KeyToInclude1", "KeyToInclude2", "KeyToInclude3"} }
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.wafv2.*; Object all; CookieMatchPatternProperty cookieMatchPatternProperty = CookieMatchPatternProperty.builder() .all(all) .excludedCookies(List.of("excludedCookies")) .includedCookies(List.of("includedCookies")) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnRuleGroup.CookieMatchPatternProperty
static final class
An implementation forCfnRuleGroup.CookieMatchPatternProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAll
Inspect all cookies. -
getExcludedCookies
Inspect only the cookies whose keys don't match any of the strings specified here. -
getIncludedCookies
Inspect only the cookies that have a key that matches one of the strings specified here. -
builder
-