interface CfnProfileMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Route53Profiles.Mixins.CfnProfileMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsroute53profiles/mixins#CfnProfileMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.route53profiles.mixins.CfnProfileMixinProps |
Python | aws_cdk.mixins_preview.aws_route53profiles.mixins.CfnProfileMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_route53profiles » mixins » CfnProfileMixinProps |
Properties for CfnProfilePropsMixin.
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 cfnProfileMixinProps: route53profiles_mixins.CfnProfileMixinProps = {
name: 'name',
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
(optional)
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