Interface FirewallRuleGroupAssociationProps

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

@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)", date="2024-09-11T18:01:25.275Z") @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();