interface CfnProfileAssociationProps
Language | Type name |
---|---|
![]() | Amazon.CDK.aws_route53profiles.CfnProfileAssociationProps |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsroute53profiles#CfnProfileAssociationProps |
![]() | software.amazon.awscdk.services.route53profiles.CfnProfileAssociationProps |
![]() | aws_cdk.aws_route53profiles.CfnProfileAssociationProps |
![]() | aws-cdk-lib » aws_route53profiles » CfnProfileAssociationProps |
Properties for defining a CfnProfileAssociation
.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_route53profiles as route53profiles } from 'aws-cdk-lib';
const cfnProfileAssociationProps: route53profiles.CfnProfileAssociationProps = {
name: 'name',
profileId: 'profileId',
resourceId: 'resourceId',
// the properties below are optional
arn: 'arn',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
Name | Type | Description |
---|---|---|
name | string | Name of the Profile association. |
profile | string | ID of the Profile. |
resource | string | The ID of the VPC. |
arn? | string | The Amazon Resource Name (ARN) of the profile association to a VPC. |
tags? | Cfn [] | An array of key-value pairs to apply to this resource. |
name
Type:
string
Name of the Profile association.
profileId
Type:
string
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
The ID of the VPC.
arn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the profile association to a VPC.
tags?
Type:
Cfn
[]
(optional)
An array of key-value pairs to apply to this resource.