interface EvaluationFormItemEnablementConditionOperandProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins.CfnEvaluationFormPropsMixin.EvaluationFormItemEnablementConditionOperandProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnect/mixins#CfnEvaluationFormPropsMixin_EvaluationFormItemEnablementConditionOperandProperty |
Java | software.amazon.awscdk.mixins.preview.services.connect.mixins.CfnEvaluationFormPropsMixin.EvaluationFormItemEnablementConditionOperandProperty |
Python | aws_cdk.mixins_preview.aws_connect.mixins.CfnEvaluationFormPropsMixin.EvaluationFormItemEnablementConditionOperandProperty |
TypeScript | @aws-cdk/mixins-preview » aws_connect » mixins » CfnEvaluationFormPropsMixin » EvaluationFormItemEnablementConditionOperandProperty |
An operand of the enablement condition.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as connect_mixins } from '@aws-cdk/mixins-preview/aws-connect';
const evaluationFormItemEnablementConditionOperandProperty: connect_mixins.CfnEvaluationFormPropsMixin.EvaluationFormItemEnablementConditionOperandProperty = {
expression: {
comparator: 'comparator',
source: {
refId: 'refId',
type: 'type',
},
values: [{
refId: 'refId',
type: 'type',
}],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| expression? | IResolvable | Evaluation | An expression of the enablement condition. |
expression?
Type:
IResolvable | Evaluation
(optional)
An expression of the enablement condition.

.NET
Go
Java
Python
TypeScript