Interface FirewallRuleGroupAssociationProps

All Superinterfaces:
FirewallRuleGroupAssociationOptions, software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
FirewallRuleGroupAssociationProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.104.0 (build e79254c)", date="2025-01-07T10:36:16.694Z") @Stability(Experimental) public interface FirewallRuleGroupAssociationProps extends software.amazon.jsii.JsiiSerializable, FirewallRuleGroupAssociationOptions
(experimental) Properties for a Firewall Rule Group Association.

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.route53resolver.alpha.*;
 import software.amazon.awscdk.services.ec2.*;
 FirewallRuleGroup firewallRuleGroup;
 Vpc vpc;
 FirewallRuleGroupAssociationProps firewallRuleGroupAssociationProps = FirewallRuleGroupAssociationProps.builder()
         .firewallRuleGroup(firewallRuleGroup)
         .priority(123)
         .vpc(vpc)
         // the properties below are optional
         .mutationProtection(false)
         .name("name")
         .build();