@Generated(value="jsii-pacmak/1.63.2 (build a8a8833)",
date="2022-08-09T19:16:38.526Z")
public interface CfnFirewallRuleGroupAssociationProps
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() |
java.lang.String |
getFirewallRuleGroupId()
The unique identifier of the firewall rule group.
|
default java.lang.String |
getMutationProtection()
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()
The name of the association.
|
java.lang.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 java.util.List<CfnTag> |
getTags()
A list of the tag keys and values that you want to associate with the rule group.
|
java.lang.String |
getVpcId()
The unique identifier of the VPC that is associated with the rule group.
|
java.lang.String getFirewallRuleGroupId()
java.lang.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).
java.lang.String getVpcId()
default java.lang.String getMutationProtection()
default java.lang.String getName()
default java.util.List<CfnTag> getTags()
static CfnFirewallRuleGroupAssociationProps.Builder builder()