interface CfnResolverRuleAssociationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Route53Resolver.CfnResolverRuleAssociationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsroute53resolver#CfnResolverRuleAssociationMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.route53resolver.CfnResolverRuleAssociationMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_route53resolver.CfnResolverRuleAssociationMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_route53resolver » CfnResolverRuleAssociationMixinProps |
Properties for CfnResolverRuleAssociationPropsMixin.
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/cfn-property-mixins';
const cfnResolverRuleAssociationMixinProps: route53resolver.CfnResolverRuleAssociationMixinProps = {
name: 'name',
resolverRuleId: 'resolverRuleId',
vpcId: 'vpcId',
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | The name of an association between a Resolver rule and a VPC. |
| resolver | string | IResolver | The ID of the Resolver rule that you associated with the VPC that is specified by VPCId . |
| vpc | string | IVPCRef | 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.
resolverRuleId?
Type:
string | IResolver
(optional)
The ID of the Resolver rule that you associated with the VPC that is specified by VPCId .
vpcId?
Type:
string | IVPCRef
(optional)
The ID of the VPC that you associated the Resolver rule with.

.NET
Go
Java
Python
TypeScript