interface EvaluationFormItemEnablementConditionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins.CfnEvaluationFormPropsMixin.EvaluationFormItemEnablementConditionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnect/mixins#CfnEvaluationFormPropsMixin_EvaluationFormItemEnablementConditionProperty |
Java | software.amazon.awscdk.mixins.preview.services.connect.mixins.CfnEvaluationFormPropsMixin.EvaluationFormItemEnablementConditionProperty |
Python | aws_cdk.mixins_preview.aws_connect.mixins.CfnEvaluationFormPropsMixin.EvaluationFormItemEnablementConditionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_connect » mixins » CfnEvaluationFormPropsMixin » EvaluationFormItemEnablementConditionProperty |
A condition for item enablement.
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 evaluationFormItemEnablementConditionProperty: connect_mixins.CfnEvaluationFormPropsMixin.EvaluationFormItemEnablementConditionProperty = {
operands: [{
expression: {
comparator: 'comparator',
source: {
refId: 'refId',
type: 'type',
},
values: [{
refId: 'refId',
type: 'type',
}],
},
}],
operator: 'operator',
};
Properties
| Name | Type | Description |
|---|---|---|
| operands? | IResolvable | (IResolvable | Evaluation)[] | Operands of the enablement condition. |
| operator? | string | The operator to be used to be applied to operands if more than one provided. |
operands?
Type:
IResolvable | (IResolvable | Evaluation)[]
(optional)
Operands of the enablement condition.
operator?
Type:
string
(optional)
The operator to be used to be applied to operands if more than one provided.

.NET
Go
Java
Python
TypeScript