interface ProfileQuestionUpdateProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.WellArchitected.CfnProfile.ProfileQuestionUpdateProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awswellarchitected#CfnProfile_ProfileQuestionUpdateProperty |
Java | software.amazon.awscdk.services.wellarchitected.CfnProfile.ProfileQuestionUpdateProperty |
Python | aws_cdk.aws_wellarchitected.CfnProfile.ProfileQuestionUpdateProperty |
TypeScript | aws-cdk-lib » aws_wellarchitected » CfnProfile » ProfileQuestionUpdateProperty |
An update to a profile question.
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 profileQuestionUpdateProperty: wellarchitected.CfnProfile.ProfileQuestionUpdateProperty = {
questionId: 'questionId',
selectedChoiceIds: ['selectedChoiceIds'],
};
Properties
| Name | Type | Description |
|---|---|---|
| question | string | The ID of the question. |
| selected | string[] | The selected choices. |
questionId?
Type:
string
(optional)
The ID of the question.
selectedChoiceIds?
Type:
string[]
(optional)
The selected choices.

.NET
Go
Java
Python
TypeScript