interface CfnProfileProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.WellArchitected.CfnProfileProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awswellarchitected#CfnProfileProps |
Java | software.amazon.awscdk.services.wellarchitected.CfnProfileProps |
Python | aws_cdk.aws_wellarchitected.CfnProfileProps |
TypeScript | aws-cdk-lib » aws_wellarchitected » 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_wellarchitected as wellarchitected } from 'aws-cdk-lib';
const cfnProfileProps: wellarchitected.CfnProfileProps = {
profileDescription: 'profileDescription',
profileName: 'profileName',
profileQuestions: [{
questionId: 'questionId',
selectedChoiceIds: ['selectedChoiceIds'],
}],
// the properties below are optional
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
The profile description.
profileName
Type:
string
The name of the profile.
profileQuestions
Type:
IResolvable | (IResolvable | Profile)[]
The profile questions.
tags?
Type:
Cfn[]
(optional)
The tags assigned to the profile.

.NET
Go
Java
Python
TypeScript