interface EvaluationFormMultiSelectQuestionPropertiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins.CfnEvaluationFormPropsMixin.EvaluationFormMultiSelectQuestionPropertiesProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnect/mixins#CfnEvaluationFormPropsMixin_EvaluationFormMultiSelectQuestionPropertiesProperty |
Java | software.amazon.awscdk.mixins.preview.services.connect.mixins.CfnEvaluationFormPropsMixin.EvaluationFormMultiSelectQuestionPropertiesProperty |
Python | aws_cdk.mixins_preview.aws_connect.mixins.CfnEvaluationFormPropsMixin.EvaluationFormMultiSelectQuestionPropertiesProperty |
TypeScript | @aws-cdk/mixins-preview » aws_connect » mixins » CfnEvaluationFormPropsMixin » EvaluationFormMultiSelectQuestionPropertiesProperty |
Properties 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 evaluationFormMultiSelectQuestionPropertiesProperty: connect_mixins.CfnEvaluationFormPropsMixin.EvaluationFormMultiSelectQuestionPropertiesProperty = {
automation: {
answerSource: {
sourceType: 'sourceType',
},
defaultOptionRefIds: ['defaultOptionRefIds'],
options: [{
ruleCategory: {
category: 'category',
condition: 'condition',
optionRefIds: ['optionRefIds'],
},
}],
},
displayAs: 'displayAs',
options: [{
refId: 'refId',
text: 'text',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| automation? | IResolvable | Evaluation | Automation configuration for this multi-select question. |
| display | string | Display format for the multi-select question. |
| options? | IResolvable | (IResolvable | Evaluation)[] | Options available for this multi-select question. |
automation?
Type:
IResolvable | Evaluation
(optional)
Automation configuration for this multi-select question.
displayAs?
Type:
string
(optional)
Display format for the multi-select question.
options?
Type:
IResolvable | (IResolvable | Evaluation)[]
(optional)
Options available for this multi-select question.

.NET
Go
Java
Python
TypeScript