Interface CfnRuleGroup.RuleActionProperty

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

@Stability(Stable) public static interface CfnRuleGroup.RuleActionProperty extends software.amazon.jsii.JsiiSerializable
The action that AWS WAF should take on a web request when it matches a rule's statement.

Settings at the web ACL level can override the rule action setting.

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 allow;
 Object block;
 Object captcha;
 Object challenge;
 Object count;
 RuleActionProperty ruleActionProperty = RuleActionProperty.builder()
         .allow(allow)
         .block(block)
         .captcha(captcha)
         .challenge(challenge)
         .count(count)
         .build();
 

See Also: