@aws-cdk_aws-route53resolver-alpha.FirewallRuleGroupAssociationOptions

interface FirewallRuleGroupAssociationOptions ๐Ÿ”น

LanguageType name
.NETAmazon.CDK.AWS.Route53Resolver.Alpha.FirewallRuleGroupAssociationOptions
Gogithub.com/aws/aws-cdk-go/awscdkroute53resolveralpha/v2#FirewallRuleGroupAssociationOptions
Javasoftware.amazon.awscdk.services.route53resolver.alpha.FirewallRuleGroupAssociationOptions
Pythonaws_cdk.aws_route53resolver_alpha.FirewallRuleGroupAssociationOptions
TypeScript (source)@aws-cdk/aws-route53resolver-alpha ยป FirewallRuleGroupAssociationOptions

Options for a Firewall Rule Group Association.

Example

import * as ec2 from 'aws-cdk-lib/aws-ec2';

declare const ruleGroup: route53resolver.FirewallRuleGroup;
declare const myVpc: ec2.Vpc;

ruleGroup.associate('Association', {
  priority: 101,
  vpc: myVpc,
})

Properties

NameTypeDescription
priority๐Ÿ”นnumberThe setting that determines the processing order of the rule group among the rule groups that are associated with a single VPC.
vpc๐Ÿ”นIVpcThe VPC that to associate with the rule group.
mutationProtection?๐Ÿ”นbooleanIf enabled, this setting disallows modification or removal of the association, to help prevent against accidentally altering DNS firewall protections.
name?๐Ÿ”นstringThe name of the association.

priority๐Ÿ”น

Type: number

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.

This value must be greater than 100 and less than 9,000


vpc๐Ÿ”น

Type: IVpc

The VPC that to associate with the rule group.


mutationProtection?๐Ÿ”น

Type: boolean (optional, default: true)

If enabled, this setting disallows modification or removal of the association, to help prevent against accidentally altering DNS firewall protections.


name?๐Ÿ”น

Type: string (optional, default: a CloudFormation generated name)

The name of the association.