@Generated(value="jsii-pacmak/1.74.0 (build 6d08790)",
date="2023-03-22T19:35:43.890Z")
public interface FirewallRuleGroupAssociationOptions
Example:
import software.amazon.awscdk.services.ec2.*; FirewallRuleGroup ruleGroup; Vpc myVpc; ruleGroup.associate("Association", FirewallRuleGroupAssociationOptions.builder() .priority(101) .vpc(myVpc) .build());
Modifier and Type | Interface and Description |
---|---|
static class |
FirewallRuleGroupAssociationOptions.Builder
A builder for
FirewallRuleGroupAssociationOptions |
static class |
FirewallRuleGroupAssociationOptions.Jsii$Proxy
An implementation for
FirewallRuleGroupAssociationOptions |
Modifier and Type | Method and Description |
---|---|
static FirewallRuleGroupAssociationOptions.Builder |
builder() |
default java.lang.Boolean |
getMutationProtection()
(experimental) If enabled, this setting disallows modification or removal of the association, to help prevent against accidentally altering DNS firewall protections.
|
default java.lang.String |
getName()
(experimental) The name of the association.
|
java.lang.Number |
getPriority()
(experimental) The setting that determines the processing order of the rule group among the rule groups that are associated with a single VPC.
|
IVpc |
getVpc()
(experimental) The VPC that to associate with the rule group.
|
java.lang.Number getPriority()
DNS Firewall filters VPC traffic starting from rule group with the lowest numeric priority setting.
This value must be greater than 100 and less than 9,000
IVpc getVpc()
default java.lang.Boolean getMutationProtection()
Default: true
default java.lang.String getName()
Default: - a CloudFormation generated name
static FirewallRuleGroupAssociationOptions.Builder builder()