Interface CfnEvaluationForm.EvaluationFormSingleSelectQuestionAutomationOptionProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnEvaluationForm.EvaluationFormSingleSelectQuestionAutomationOptionProperty.Jsii$Proxy
Enclosing class:
CfnEvaluationForm

@Stability(Stable) public static interface CfnEvaluationForm.EvaluationFormSingleSelectQuestionAutomationOptionProperty extends software.amazon.jsii.JsiiSerializable
The automation options of the single select question.

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.*;
 EvaluationFormSingleSelectQuestionAutomationOptionProperty evaluationFormSingleSelectQuestionAutomationOptionProperty = EvaluationFormSingleSelectQuestionAutomationOptionProperty.builder()
         .ruleCategory(SingleSelectQuestionRuleCategoryAutomationProperty.builder()
                 .category("category")
                 .condition("condition")
                 .optionRefId("optionRefId")
                 .build())
         .build();
 

See Also: