Interface CfnEvaluationForm.SingleSelectQuestionRuleCategoryAutomationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEvaluationForm.SingleSelectQuestionRuleCategoryAutomationProperty.Jsii$Proxy
- Enclosing class:
CfnEvaluationForm
@Stability(Stable)
public static interface CfnEvaluationForm.SingleSelectQuestionRuleCategoryAutomationProperty
extends software.amazon.jsii.JsiiSerializable
Information about the automation option based on a rule category for a single select question.
Length Constraints : Minimum length of 1. Maximum length of 50.
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.*; SingleSelectQuestionRuleCategoryAutomationProperty singleSelectQuestionRuleCategoryAutomationProperty = SingleSelectQuestionRuleCategoryAutomationProperty.builder() .category("category") .condition("condition") .optionRefId("optionRefId") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forCfnEvaluationForm.SingleSelectQuestionRuleCategoryAutomationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The category name, as defined in Rules.The condition to apply for the automation option.The identifier of the answer option.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCategory
The category name, as defined in Rules.Minimum : 1
Maximum : 50
- See Also:
-
getCondition
The condition to apply for the automation option.If the condition is PRESENT, then the option is applied when the contact data includes the category. Similarly, if the condition is NOT_PRESENT, then the option is applied when the contact data does not include the category.
Allowed values :
PRESENT
|NOT_PRESENT
Maximum : 50
- See Also:
-
getOptionRefId
The identifier of the answer option. An identifier must be unique within the question.Length Constraints : Minimum length of 1. Maximum length of 40.
- See Also:
-
builder
@Stability(Stable) static CfnEvaluationForm.SingleSelectQuestionRuleCategoryAutomationProperty.Builder builder()
-