Interface CfnEvaluationForm.EvaluationFormMultiSelectQuestionPropertiesProperty

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

@Stability(Stable) public static interface CfnEvaluationForm.EvaluationFormMultiSelectQuestionPropertiesProperty extends software.amazon.jsii.JsiiSerializable
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.*;
 EvaluationFormMultiSelectQuestionPropertiesProperty evaluationFormMultiSelectQuestionPropertiesProperty = EvaluationFormMultiSelectQuestionPropertiesProperty.builder()
         .options(List.of(EvaluationFormMultiSelectQuestionOptionProperty.builder()
                 .refId("refId")
                 .text("text")
                 .build()))
         // the properties below are optional
         .automation(EvaluationFormMultiSelectQuestionAutomationProperty.builder()
                 .options(List.of(EvaluationFormMultiSelectQuestionAutomationOptionProperty.builder()
                         .ruleCategory(MultiSelectQuestionRuleCategoryAutomationProperty.builder()
                                 .category("category")
                                 .condition("condition")
                                 .optionRefIds(List.of("optionRefIds"))
                                 .build())
                         .build()))
                 // the properties below are optional
                 .answerSource(EvaluationFormQuestionAutomationAnswerSourceProperty.builder()
                         .sourceType("sourceType")
                         .build())
                 .defaultOptionRefIds(List.of("defaultOptionRefIds"))
                 .build())
         .displayAs("displayAs")
         .build();
 

See Also: