Interface CfnRuleGroupPropsMixin.RateLimitCookieProperty

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

@Stability(Stable) public static interface CfnRuleGroupPropsMixin.RateLimitCookieProperty extends software.amazon.jsii.JsiiSerializable
Specifies a cookie as an aggregate key for a rate-based rule.

Each distinct value in the cookie contributes to the aggregation instance. If you use a single cookie as your custom key, then each value fully defines an aggregation instance.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.mixins.preview.services.wafv2.mixins.*;
 RateLimitCookieProperty rateLimitCookieProperty = RateLimitCookieProperty.builder()
         .name("name")
         .textTransformations(List.of(TextTransformationProperty.builder()
                 .priority(123)
                 .type("type")
                 .build()))
         .build();
 

See Also: