interface EvaluationFormMultiSelectQuestionOptionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins.CfnEvaluationFormPropsMixin.EvaluationFormMultiSelectQuestionOptionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnect/mixins#CfnEvaluationFormPropsMixin_EvaluationFormMultiSelectQuestionOptionProperty |
Java | software.amazon.awscdk.mixins.preview.services.connect.mixins.CfnEvaluationFormPropsMixin.EvaluationFormMultiSelectQuestionOptionProperty |
Python | aws_cdk.mixins_preview.aws_connect.mixins.CfnEvaluationFormPropsMixin.EvaluationFormMultiSelectQuestionOptionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_connect » mixins » CfnEvaluationFormPropsMixin » EvaluationFormMultiSelectQuestionOptionProperty |
An option for a multi-select question in an evaluation form.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as connect_mixins } from '@aws-cdk/mixins-preview/aws-connect';
const evaluationFormMultiSelectQuestionOptionProperty: connect_mixins.CfnEvaluationFormPropsMixin.EvaluationFormMultiSelectQuestionOptionProperty = {
refId: 'refId',
text: 'text',
};
Properties
| Name | Type | Description |
|---|---|---|
| ref | string | Reference identifier for this option. |
| text? | string | Display text for this option. |
refId?
Type:
string
(optional)
Reference identifier for this option.
text?
Type:
string
(optional)
Display text for this option.

.NET
Go
Java
Python
TypeScript