Interface CfnCaseRulePropsMixin.BooleanOperandsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCaseRulePropsMixin.BooleanOperandsProperty.Jsii$Proxy
- Enclosing class:
CfnCaseRulePropsMixin
@Stability(Stable)
public static interface CfnCaseRulePropsMixin.BooleanOperandsProperty
extends software.amazon.jsii.JsiiSerializable
Boolean operands for a condition.
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.cfnpropertymixins.services.cases.*;
Object emptyValue;
BooleanOperandsProperty booleanOperandsProperty = BooleanOperandsProperty.builder()
.operandOne(OperandOneProperty.builder()
.fieldId("fieldId")
.build())
.operandTwo(OperandTwoProperty.builder()
.booleanValue(false)
.doubleValue(123)
.emptyValue(emptyValue)
.stringValue("stringValue")
.build())
.result(false)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCaseRulePropsMixin.BooleanOperandsPropertystatic final classAn implementation forCfnCaseRulePropsMixin.BooleanOperandsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getOperandOne
Represents the left hand operand in the condition.Returns union: either
IResolvableorCfnCaseRulePropsMixin.OperandOneProperty- See Also:
-
getOperandTwo
Represents the right hand operand in the condition.Returns union: either
IResolvableorCfnCaseRulePropsMixin.OperandTwoProperty- See Also:
-
getResult
The value of the outer rule if the condition evaluates to true.Returns union: either
BooleanorIResolvable- See Also:
-
builder
-