Interface CfnWebACL.ExcludedRuleProperty

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

@Stability(Stable) public static interface CfnWebACL.ExcludedRuleProperty extends software.amazon.jsii.JsiiSerializable
Specifies a single rule in a rule group whose action you want to override to Count .

Instead of this option, use RuleActionOverrides . It accepts any valid action setting, including Count .

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.*;
 ExcludedRuleProperty excludedRuleProperty = ExcludedRuleProperty.builder()
         .name("name")
         .build();
 

See Also: