@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:41.701Z") @Stability(value=Stable) public interface CfnFirewallRuleGroupAssociationProps extends software.amazon.jsii.JsiiSerializable
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.*;
CfnFirewallRuleGroupAssociationProps cfnFirewallRuleGroupAssociationProps = CfnFirewallRuleGroupAssociationProps.builder()
.firewallRuleGroupId("firewallRuleGroupId")
.priority(123)
.vpcId("vpcId")
// the properties below are optional
.mutationProtection("mutationProtection")
.name("name")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnFirewallRuleGroupAssociationProps.Builder
A builder for
CfnFirewallRuleGroupAssociationProps |
static class |
CfnFirewallRuleGroupAssociationProps.Jsii$Proxy
An implementation for
CfnFirewallRuleGroupAssociationProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnFirewallRuleGroupAssociationProps.Builder |
builder() |
String |
getFirewallRuleGroupId()
The unique identifier of the firewall rule group.
|
default String |
getMutationProtection()
If enabled, this setting disallows modification or removal of the association, to help prevent against accidentally altering DNS firewall protections.
|
default String |
getName()
The name of the association.
|
Number |
getPriority()
The setting that determines the processing order of the rule group among the rule groups that are associated with a single VPC.
|
default List<CfnTag> |
getTags()
A list of the tag keys and values that you want to associate with the rule group.
|
String |
getVpcId()
The unique identifier of the VPC that is associated with the rule group.
|
@Stability(value=Stable) @NotNull String getFirewallRuleGroupId()
@Stability(value=Stable) @NotNull Number getPriority()
DNS Firewall filters VPC traffic starting from rule group with the lowest numeric priority setting.
You must specify a unique priority for each rule group that you associate with a single VPC. To make it easier to insert rule groups later, leave space between the numbers, for example, use 101, 200, and so on. You can change the priority setting for a rule group association after you create it.
The allowed values for Priority are between 100 and 9900 (excluding 100 and 9900).
@Stability(value=Stable) @NotNull String getVpcId()
@Stability(value=Stable) @Nullable default String getMutationProtection()
@Stability(value=Stable) @Nullable default String getName()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnFirewallRuleGroupAssociationProps.Builder builder()
Copyright © 2022. All rights reserved.