@Generated(value="jsii-pacmak/1.62.0 (build 293ac17)", date="2022-07-30T00:01:30.903Z") @Stability(value=Experimental) public interface FirewallRuleGroupAssociationOptions extends software.amazon.jsii.JsiiSerializable
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 Boolean |
getMutationProtection()
(experimental) If enabled, this setting disallows modification or removal of the association, to help prevent against accidentally altering DNS firewall protections.
|
default String |
getName()
(experimental) The name of the association.
|
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.
|
@Stability(value=Experimental) @NotNull 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
@Stability(value=Experimental) @NotNull IVpc getVpc()
@Stability(value=Experimental) @Nullable default Boolean getMutationProtection()
Default: true
@Stability(value=Experimental) @Nullable default String getName()
Default: - a CloudFormation generated name
@Stability(value=Experimental) static FirewallRuleGroupAssociationOptions.Builder builder()
Copyright © 2022. All rights reserved.