Interface CfnFirewallPolicy.StatefulRuleGroupReferenceProperty

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

@Stability(Stable) public static interface CfnFirewallPolicy.StatefulRuleGroupReferenceProperty extends software.amazon.jsii.JsiiSerializable
Identifier for a single stateful rule group, used in a firewall policy to refer to a rule group.

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.networkfirewall.*;
 StatefulRuleGroupReferenceProperty statefulRuleGroupReferenceProperty = StatefulRuleGroupReferenceProperty.builder()
         .resourceArn("resourceArn")
         // the properties below are optional
         .override(StatefulRuleGroupOverrideProperty.builder()
                 .action("action")
                 .build())
         .priority(123)
         .build();
 

See Also: