CfnFirewallRuleGroupAssociationMixinProps
- class aws_cdk.mixins_preview.aws_route53resolver.mixins.CfnFirewallRuleGroupAssociationMixinProps(*, firewall_rule_group_id=None, mutation_protection=None, name=None, priority=None, tags=None, vpc_id=None)
Bases:
objectProperties for CfnFirewallRuleGroupAssociationPropsMixin.
- Parameters:
firewall_rule_group_id (
Optional[str]) – The unique identifier of the firewall rule group.mutation_protection (
Optional[str]) – If enabled, this setting disallows modification or removal of the association, to help prevent against accidentally altering DNS firewall protections.name (
Optional[str]) – The name of the association.priority (
Union[int,float,None]) – 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 forPriorityare between 100 and 9900 (excluding 100 and 9900).tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – A list of the tag keys and values that you want to associate with the rule group.vpc_id (
Optional[str]) – The unique identifier of the VPC that is associated with the rule group.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_route53resolver import mixins as route53resolver_mixins cfn_firewall_rule_group_association_mixin_props = route53resolver_mixins.CfnFirewallRuleGroupAssociationMixinProps( firewall_rule_group_id="firewallRuleGroupId", mutation_protection="mutationProtection", name="name", priority=123, tags=[CfnTag( key="key", value="value" )], vpc_id="vpcId" )
Attributes
- firewall_rule_group_id
The unique identifier of the firewall rule group.
- mutation_protection
If enabled, this setting disallows modification or removal of the association, to help prevent against accidentally altering DNS firewall protections.
- name
The name of the association.
- priority
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
Priorityare between 100 and 9900 (excluding 100 and 9900).
- tags
A list of the tag keys and values that you want to associate with the rule group.
- vpc_id
The unique identifier of the VPC that is associated with the rule group.