interface EvaluationFormSingleSelectQuestionAutomationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins.CfnEvaluationFormPropsMixin.EvaluationFormSingleSelectQuestionAutomationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnect/mixins#CfnEvaluationFormPropsMixin_EvaluationFormSingleSelectQuestionAutomationProperty |
Java | software.amazon.awscdk.mixins.preview.services.connect.mixins.CfnEvaluationFormPropsMixin.EvaluationFormSingleSelectQuestionAutomationProperty |
Python | aws_cdk.mixins_preview.aws_connect.mixins.CfnEvaluationFormPropsMixin.EvaluationFormSingleSelectQuestionAutomationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_connect » mixins » CfnEvaluationFormPropsMixin » EvaluationFormSingleSelectQuestionAutomationProperty |
Information about the automation configuration in single select questions.
Automation options are evaluated in order, and the first matched option is applied. If no automation option matches, and there is a default option, then the default option is applied.
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 evaluationFormSingleSelectQuestionAutomationProperty: connect_mixins.CfnEvaluationFormPropsMixin.EvaluationFormSingleSelectQuestionAutomationProperty = {
answerSource: {
sourceType: 'sourceType',
},
defaultOptionRefId: 'defaultOptionRefId',
options: [{
ruleCategory: {
category: 'category',
condition: 'condition',
optionRefId: 'optionRefId',
},
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| answer | IResolvable | Evaluation | Automation answer source. |
| default | string | The identifier of the default answer option, when none of the automation options match the criteria. |
| options? | IResolvable | (IResolvable | Evaluation)[] | The automation options of the single select question. |
answerSource?
Type:
IResolvable | Evaluation
(optional)
Automation answer source.
defaultOptionRefId?
Type:
string
(optional)
The identifier of the default answer option, when none of the automation options match the criteria.
Length Constraints : Minimum length of 1. Maximum length of 40.
options?
Type:
IResolvable | (IResolvable | Evaluation)[]
(optional)
The automation options of the single select question.
Minimum : 1
Maximum : 20

.NET
Go
Java
Python
TypeScript