Interface CfnEvaluationForm.EvaluationFormMultiSelectQuestionAutomationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEvaluationForm.EvaluationFormMultiSelectQuestionAutomationProperty.Jsii$Proxy
- Enclosing class:
CfnEvaluationForm
@Stability(Stable)
public static interface CfnEvaluationForm.EvaluationFormMultiSelectQuestionAutomationProperty
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.*;
EvaluationFormMultiSelectQuestionAutomationProperty evaluationFormMultiSelectQuestionAutomationProperty = 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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnEvaluationForm.EvaluationFormMultiSelectQuestionAutomationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getOptions
The answer options for the automation.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnEvaluationForm.EvaluationFormMultiSelectQuestionAutomationOptionProperty>- See Also:
-
getAnswerSource
A question automation answer.Returns union: either
IResolvableorCfnEvaluationForm.EvaluationFormQuestionAutomationAnswerSourceProperty- See Also:
-
getDefaultOptionRefIds
The list of reference id.- See Also:
-
builder
@Stability(Stable) static CfnEvaluationForm.EvaluationFormMultiSelectQuestionAutomationProperty.Builder builder()
-