interface CfnProfileAssociationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Route53Profiles.Mixins.CfnProfileAssociationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsroute53profiles/mixins#CfnProfileAssociationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.route53profiles.mixins.CfnProfileAssociationMixinProps |
Python | aws_cdk.mixins_preview.aws_route53profiles.mixins.CfnProfileAssociationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_route53profiles » mixins » CfnProfileAssociationMixinProps |
Properties for CfnProfileAssociationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as route53profiles_mixins } from '@aws-cdk/mixins-preview/aws-route53profiles';
const cfnProfileAssociationMixinProps: route53profiles_mixins.CfnProfileAssociationMixinProps = {
arn: 'arn',
name: 'name',
profileId: 'profileId',
resourceId: 'resourceId',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| arn? | string | The Amazon Resource Name (ARN) of the profile association to a VPC. |
| name? | string | Name of the Profile association. |
| profile | string | ID of the Profile. |
| resource | string | The ID of the VPC. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
arn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the profile association to a VPC.
name?
Type:
string
(optional)
Name of the Profile association.
profileId?
Type:
string
(optional)
ID of the Profile.
Update to this property requires update to the ResourceId property as well, because you can only associate one Profile per VPC. For more information, see Route 53 Profiles .
resourceId?
Type:
string
(optional)
The ID of the VPC.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.

.NET
Go
Java
Python
TypeScript