interface ProfileQuestionUpdateProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.WellArchitected.CfnProfilePropsMixin.ProfileQuestionUpdateProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awswellarchitected#CfnProfilePropsMixin_ProfileQuestionUpdateProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.wellarchitected.CfnProfilePropsMixin.ProfileQuestionUpdateProperty |
Python | aws_cdk.cfn_property_mixins.aws_wellarchitected.CfnProfilePropsMixin.ProfileQuestionUpdateProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_wellarchitected » CfnProfilePropsMixin » 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/cfn-property-mixins';
const profileQuestionUpdateProperty: wellarchitected.CfnProfilePropsMixin.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