Interface CfnCaseRule.BooleanConditionProperty

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

@Stability(Stable) public static interface CfnCaseRule.BooleanConditionProperty extends software.amazon.jsii.JsiiSerializable
Boolean condition for a rule.

In the Amazon Connect admin website, case rules are known as case field conditions . For more information about case field conditions, see Add case field conditions to a case template .

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.cases.*;
 Object emptyValue;
 BooleanConditionProperty booleanConditionProperty = BooleanConditionProperty.builder()
         .equalTo(BooleanOperandsProperty.builder()
                 .operandOne(OperandOneProperty.builder()
                         .fieldId("fieldId")
                         .build())
                 .operandTwo(OperandTwoProperty.builder()
                         .booleanValue(false)
                         .doubleValue(123)
                         .emptyValue(emptyValue)
                         .stringValue("stringValue")
                         .build())
                 .result(false)
                 .build())
         .notEqualTo(BooleanOperandsProperty.builder()
                 .operandOne(OperandOneProperty.builder()
                         .fieldId("fieldId")
                         .build())
                 .operandTwo(OperandTwoProperty.builder()
                         .booleanValue(false)
                         .doubleValue(123)
                         .emptyValue(emptyValue)
                         .stringValue("stringValue")
                         .build())
                 .result(false)
                 .build())
         .build();
 

See Also: