interface EvaluationFormMultiSelectQuestionOptionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Connect.CfnEvaluationForm.EvaluationFormMultiSelectQuestionOptionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconnect#CfnEvaluationForm_EvaluationFormMultiSelectQuestionOptionProperty |
Java | software.amazon.awscdk.services.connect.CfnEvaluationForm.EvaluationFormMultiSelectQuestionOptionProperty |
Python | aws_cdk.aws_connect.CfnEvaluationForm.EvaluationFormMultiSelectQuestionOptionProperty |
TypeScript | aws-cdk-lib » aws_connect » CfnEvaluationForm » EvaluationFormMultiSelectQuestionOptionProperty |
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-lib';
const evaluationFormMultiSelectQuestionOptionProperty: connect.CfnEvaluationForm.EvaluationFormMultiSelectQuestionOptionProperty = {
refId: 'refId',
text: 'text',
};
Properties
| Name | Type | Description |
|---|---|---|
| ref | string | The identifier to reference the item. |
| text | string | The title of the option. |
refId
Type:
string
The identifier to reference the item.
text
Type:
string
The title of the option.

.NET
Go
Java
Python
TypeScript