interface EvaluationFormMultiSelectQuestionOptionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Connect.CfnEvaluationFormPropsMixin.EvaluationFormMultiSelectQuestionOptionProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsconnect#CfnEvaluationFormPropsMixin_EvaluationFormMultiSelectQuestionOptionProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.connect.CfnEvaluationFormPropsMixin.EvaluationFormMultiSelectQuestionOptionProperty |
Python | aws_cdk.cfn_property_mixins.aws_connect.CfnEvaluationFormPropsMixin.EvaluationFormMultiSelectQuestionOptionProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_connect » 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 { aws_connect as connect } from '@aws-cdk/cfn-property-mixins';
const evaluationFormMultiSelectQuestionOptionProperty: connect.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