interface CfnFirewallRuleGroupAssociationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Route53Resolver.Mixins.CfnFirewallRuleGroupAssociationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsroute53resolver/mixins#CfnFirewallRuleGroupAssociationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.route53resolver.mixins.CfnFirewallRuleGroupAssociationMixinProps |
Python | aws_cdk.mixins_preview.aws_route53resolver.mixins.CfnFirewallRuleGroupAssociationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_route53resolver » mixins » CfnFirewallRuleGroupAssociationMixinProps |
Properties for CfnFirewallRuleGroupAssociationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as route53resolver_mixins } from '@aws-cdk/mixins-preview/aws-route53resolver';
const cfnFirewallRuleGroupAssociationMixinProps: route53resolver_mixins.CfnFirewallRuleGroupAssociationMixinProps = {
firewallRuleGroupId: 'firewallRuleGroupId',
mutationProtection: 'mutationProtection',
name: 'name',
priority: 123,
tags: [{
key: 'key',
value: 'value',
}],
vpcId: 'vpcId',
};
Properties
| Name | Type | Description |
|---|---|---|
| firewall | string | The unique identifier of the firewall rule group. |
| mutation | string | If enabled, this setting disallows modification or removal of the association, to help prevent against accidentally altering DNS firewall protections. |
| name? | string | The name of the association. |
| priority? | number | The setting that determines the processing order of the rule group among the rule groups that are associated with a single VPC. |
| tags? | Cfn[] | A list of the tag keys and values that you want to associate with the rule group. |
| vpc | string | The unique identifier of the VPC that is associated with the rule group. |
firewallRuleGroupId?
Type:
string
(optional)
The unique identifier of the firewall rule group.
mutationProtection?
Type:
string
(optional)
If enabled, this setting disallows modification or removal of the association, to help prevent against accidentally altering DNS firewall protections.
name?
Type:
string
(optional)
The name of the association.
priority?
Type:
number
(optional)
The setting that determines the processing order of the rule group among the rule groups that are associated with a single VPC.
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).
tags?
Type:
Cfn[]
(optional)
A list of the tag keys and values that you want to associate with the rule group.
vpcId?
Type:
string
(optional)
The unique identifier of the VPC that is associated with the rule group.

.NET
Go
Java
Python
TypeScript