interface CfnResolverRuleAssociationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Route53Resolver.Mixins.CfnResolverRuleAssociationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsroute53resolver/mixins#CfnResolverRuleAssociationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.route53resolver.mixins.CfnResolverRuleAssociationMixinProps |
Python | aws_cdk.mixins_preview.aws_route53resolver.mixins.CfnResolverRuleAssociationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_route53resolver » mixins » 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 { mixins as route53resolver_mixins } from '@aws-cdk/mixins-preview/aws-route53resolver';
const cfnResolverRuleAssociationMixinProps: route53resolver_mixins.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 | 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?
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
(optional)
The ID of the Resolver rule that you associated with the VPC that is specified by VPCId .
vpcId?
Type:
string
(optional)
The ID of the VPC that you associated the Resolver rule with.

.NET
Go
Java
Python
TypeScript