Interface CfnEvaluationForm.EvaluationFormSingleSelectQuestionAutomationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEvaluationForm.EvaluationFormSingleSelectQuestionAutomationProperty.Jsii$Proxy
- Enclosing class:
CfnEvaluationForm
@Stability(Stable)
public static interface CfnEvaluationForm.EvaluationFormSingleSelectQuestionAutomationProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.connect.*; EvaluationFormSingleSelectQuestionAutomationProperty evaluationFormSingleSelectQuestionAutomationProperty = EvaluationFormSingleSelectQuestionAutomationProperty.builder() .options(List.of(EvaluationFormSingleSelectQuestionAutomationOptionProperty.builder() .ruleCategory(SingleSelectQuestionRuleCategoryAutomationProperty.builder() .category("category") .condition("condition") .optionRefId("optionRefId") .build()) .build())) // the properties below are optional .defaultOptionRefId("defaultOptionRefId") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forCfnEvaluationForm.EvaluationFormSingleSelectQuestionAutomationProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getOptions
The automation options of the single select question.Minimum : 1
Maximum : 20
-
getDefaultOptionRefId
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.
-
builder
@Stability(Stable) static CfnEvaluationForm.EvaluationFormSingleSelectQuestionAutomationProperty.Builder builder()
-