Interface FirewallRuleGroupProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
FirewallRuleGroupProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:40.414Z") @Stability(Experimental) public interface FirewallRuleGroupProps extends software.amazon.jsii.JsiiSerializable
(experimental) Properties for a Firewall Rule Group.

Example:

 FirewallDomainList myBlockList;
 FirewallRuleGroup.Builder.create(this, "RuleGroup")
         .rules(List.of(FirewallRule.builder()
                 .priority(10)
                 .firewallDomainList(myBlockList)
                 // block and reply with NODATA
                 .action(FirewallRuleAction.block())
                 .build()))
         .build();