interface CfnResolverRuleAssociationProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Route53Resolver.CfnResolverRuleAssociationProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsroute53resolver#CfnResolverRuleAssociationProps |
Java | software.amazon.awscdk.services.route53resolver.CfnResolverRuleAssociationProps |
Python | aws_cdk.aws_route53resolver.CfnResolverRuleAssociationProps |
TypeScript | aws-cdk-lib » aws_route53resolver » CfnResolverRuleAssociationProps |
Properties for defining a CfnResolverRuleAssociation.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_route53resolver as route53resolver } from 'aws-cdk-lib';
const cfnResolverRuleAssociationProps: route53resolver.CfnResolverRuleAssociationProps = {
resolverRuleId: 'resolverRuleId',
vpcId: 'vpcId',
// the properties below are optional
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| resolver | string | The ID of the Resolver rule that you associated with the VPC that is specified by VPCId . |
| vpc | string | The ID of the VPC that you associated the Resolver rule with. |
| name? | string | The name of an association between a Resolver rule and a VPC. |
resolverRuleId
Type:
string
The ID of the Resolver rule that you associated with the VPC that is specified by VPCId .
vpcId
Type:
string
The ID of the VPC that you associated the Resolver rule with.
name?
Type:
string
(optional)
The name of an association between a Resolver rule and a VPC.
The name can be up to 64 characters long and can contain letters (a-z, A-Z), numbers (0-9), hyphens (-), underscores (_), and spaces. The name cannot consist of only numbers.

.NET
Go
Java
Python
TypeScript