interface BooleanOperandsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Cases.Mixins.CfnCaseRulePropsMixin.BooleanOperandsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscases/mixins#CfnCaseRulePropsMixin_BooleanOperandsProperty |
Java | software.amazon.awscdk.mixins.preview.services.cases.mixins.CfnCaseRulePropsMixin.BooleanOperandsProperty |
Python | aws_cdk.mixins_preview.aws_cases.mixins.CfnCaseRulePropsMixin.BooleanOperandsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cases » mixins » CfnCaseRulePropsMixin » BooleanOperandsProperty |
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 { mixins as cases_mixins } from '@aws-cdk/mixins-preview/aws-cases';
declare const emptyValue: any;
const booleanOperandsProperty: cases_mixins.CfnCaseRulePropsMixin.BooleanOperandsProperty = {
operandOne: {
fieldId: 'fieldId',
},
operandTwo: {
booleanValue: false,
doubleValue: 123,
emptyValue: emptyValue,
stringValue: 'stringValue',
},
result: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| operand | IResolvable | Operand | Represents the left hand operand in the condition. |
| operand | IResolvable | Operand | Represents the right hand operand in the condition. |
| result? | boolean | IResolvable | The value of the outer rule if the condition evaluates to true. |
operandOne?
Type:
IResolvable | Operand
(optional)
Represents the left hand operand in the condition.
operandTwo?
Type:
IResolvable | Operand
(optional)
Represents the right hand operand in the condition.
result?
Type:
boolean | IResolvable
(optional)
The value of the outer rule if the condition evaluates to true.

.NET
Go
Java
Python
TypeScript