interface CfnProfileProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_route53profiles.CfnProfileProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsroute53profiles#CfnProfileProps |
Java | software.amazon.awscdk.services.route53profiles.CfnProfileProps |
Python | aws_cdk.aws_route53profiles.CfnProfileProps |
TypeScript | aws-cdk-lib » aws_route53profiles » CfnProfileProps |
Properties for defining a CfnProfile.
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 cfnProfileProps: route53profiles.CfnProfileProps = {
name: 'name',
// the properties below are optional
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | Name of the Profile. |
| tags? | Cfn[] | A list of the tag keys and values that you want to associate with the profile. |
name
Type:
string
Name of the Profile.
tags?
Type:
Cfn[]
(optional)
A list of the tag keys and values that you want to associate with the profile.

.NET
Go
Java
Python
TypeScript