interface EvaluationFormMultiSelectQuestionPropertiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Connect.CfnEvaluationForm.EvaluationFormMultiSelectQuestionPropertiesProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconnect#CfnEvaluationForm_EvaluationFormMultiSelectQuestionPropertiesProperty |
Java | software.amazon.awscdk.services.connect.CfnEvaluationForm.EvaluationFormMultiSelectQuestionPropertiesProperty |
Python | aws_cdk.aws_connect.CfnEvaluationForm.EvaluationFormMultiSelectQuestionPropertiesProperty |
TypeScript | aws-cdk-lib » aws_connect » CfnEvaluationForm » EvaluationFormMultiSelectQuestionPropertiesProperty |
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 evaluationFormMultiSelectQuestionPropertiesProperty: connect.CfnEvaluationForm.EvaluationFormMultiSelectQuestionPropertiesProperty = {
options: [{
refId: 'refId',
text: 'text',
}],
// the properties below are optional
automation: {
options: [{
ruleCategory: {
category: 'category',
condition: 'condition',
optionRefIds: ['optionRefIds'],
},
}],
// the properties below are optional
answerSource: {
sourceType: 'sourceType',
},
defaultOptionRefIds: ['defaultOptionRefIds'],
},
displayAs: 'displayAs',
};
Properties
| Name | Type | Description |
|---|---|---|
| options | IResolvable | (IResolvable | Evaluation)[] | The list of options for the question. |
| automation? | IResolvable | Evaluation | |
| display | string | The display mode of the multi-select question. |
options
Type:
IResolvable | (IResolvable | Evaluation)[]
The list of options for the question.
automation?
Type:
IResolvable | Evaluation
(optional)
displayAs?
Type:
string
(optional)
The display mode of the multi-select question.

.NET
Go
Java
Python
TypeScript