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();