interface OperandTwoProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Cases.Mixins.CfnCaseRulePropsMixin.OperandTwoProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscases/mixins#CfnCaseRulePropsMixin_OperandTwoProperty |
Java | software.amazon.awscdk.mixins.preview.services.cases.mixins.CfnCaseRulePropsMixin.OperandTwoProperty |
Python | aws_cdk.mixins_preview.aws_cases.mixins.CfnCaseRulePropsMixin.OperandTwoProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cases » mixins » CfnCaseRulePropsMixin » OperandTwoProperty |
Represents the right hand operand in the 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 operandTwoProperty: cases_mixins.CfnCaseRulePropsMixin.OperandTwoProperty = {
booleanValue: false,
doubleValue: 123,
emptyValue: emptyValue,
stringValue: 'stringValue',
};
Properties
| Name | Type | Description |
|---|---|---|
| boolean | boolean | IResolvable | Boolean value type. |
| double | number | Double value type. |
| empty | any | Represents an empty operand value. |
| string | string | String value type. |
booleanValue?
Type:
boolean | IResolvable
(optional)
Boolean value type.
doubleValue?
Type:
number
(optional)
Double value type.
emptyValue?
Type:
any
(optional)
Represents an empty operand value.
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 .
stringValue?
Type:
string
(optional)
String value type.

.NET
Go
Java
Python
TypeScript