interface CfnProfileMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Route53Profiles.CfnProfileMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsroute53profiles#CfnProfileMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.route53profiles.CfnProfileMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_route53profiles.CfnProfileMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_route53profiles » 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 { aws_route53profiles as route53profiles } from '@aws-cdk/cfn-property-mixins';
const cfnProfileMixinProps: route53profiles.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