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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forFirewallRuleGroupAssociationProps
static final class
An implementation forFirewallRuleGroupAssociationProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
(experimental) The firewall rule group which must be associated.Methods inherited from interface software.amazon.awscdk.services.route53resolver.alpha.FirewallRuleGroupAssociationOptions
getMutationProtection, getName, getPriority, getVpc
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFirewallRuleGroup
(experimental) The firewall rule group which must be associated. -
builder
-