interface CfnProfileMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.WellArchitected.CfnProfileMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awswellarchitected#CfnProfileMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.wellarchitected.CfnProfileMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_wellarchitected.CfnProfileMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_wellarchitected » 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_wellarchitected as wellarchitected } from '@aws-cdk/cfn-property-mixins';
const cfnProfileMixinProps: wellarchitected.CfnProfileMixinProps = {
profileDescription: 'profileDescription',
profileName: 'profileName',
profileQuestions: [{
questionId: 'questionId',
selectedChoiceIds: ['selectedChoiceIds'],
}],
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| profile | string | The profile description. |
| profile | string | The name of the profile. |
| profile | IResolvable | (IResolvable | Profile)[] | The profile questions. |
| tags? | Cfn[] | The tags assigned to the profile. |
profileDescription?
Type:
string
(optional)
The profile description.
profileName?
Type:
string
(optional)
The name of the profile.
profileQuestions?
Type:
IResolvable | (IResolvable | Profile)[]
(optional)
The profile questions.
tags?
Type:
Cfn[]
(optional)
The tags assigned to the profile.

.NET
Go
Java
Python
TypeScript