Interface FirewallRuleGroupProps

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

@Generated(value="jsii-pacmak/1.112.0 (build de1bc80)", date="2025-08-05T19:18:43.545Z") @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();