Interface CfnEvaluationForm.MultiSelectQuestionRuleCategoryAutomationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEvaluationForm.MultiSelectQuestionRuleCategoryAutomationProperty.Jsii$Proxy
- Enclosing class:
CfnEvaluationForm
@Stability(Stable)
public static interface CfnEvaluationForm.MultiSelectQuestionRuleCategoryAutomationProperty
extends software.amazon.jsii.JsiiSerializable
Automation rule for multi-select questions based on rule categories.
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.*;
MultiSelectQuestionRuleCategoryAutomationProperty multiSelectQuestionRuleCategoryAutomationProperty = MultiSelectQuestionRuleCategoryAutomationProperty.builder()
.category("category")
.condition("condition")
.optionRefIds(List.of("optionRefIds"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnEvaluationForm.MultiSelectQuestionRuleCategoryAutomationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The category name for this automation rule.The condition for this automation rule.Reference IDs of options for this automation rule.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCategory
The category name for this automation rule.- See Also:
-
getCondition
The condition for this automation rule.- See Also:
-
getOptionRefIds
Reference IDs of options for this automation rule.- See Also:
-
builder
@Stability(Stable) static CfnEvaluationForm.MultiSelectQuestionRuleCategoryAutomationProperty.Builder builder()
-