Interface CfnWebACL.CookieMatchPatternProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnWebACL.CookieMatchPatternProperty.Jsii$Proxy
Enclosing class:
CfnWebACL

@Stability(Stable) public static interface CfnWebACL.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": [ "session-id-time", "session-id" ] }

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

See Also: