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

.NET
Go
Java
Python
TypeScript