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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnEvaluationForm.EvaluationFormMultiSelectQuestionPropertiesProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectReturns union: eitherIResolvableorCfnEvaluationForm.EvaluationFormMultiSelectQuestionAutomationPropertydefault StringThe display mode of the multi-select question.The list of options for the question.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getOptions
The list of options for the question.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnEvaluationForm.EvaluationFormMultiSelectQuestionOptionProperty>- See Also:
-
getAutomation
Returns union: eitherIResolvableorCfnEvaluationForm.EvaluationFormMultiSelectQuestionAutomationProperty- See Also:
-
getDisplayAs
The display mode of the multi-select question.- See Also:
-
builder
@Stability(Stable) static CfnEvaluationForm.EvaluationFormMultiSelectQuestionPropertiesProperty.Builder builder()
-