interface EvaluationFormItemEnablementConditionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Connect.CfnEvaluationFormPropsMixin.EvaluationFormItemEnablementConditionProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsconnect#CfnEvaluationFormPropsMixin_EvaluationFormItemEnablementConditionProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.connect.CfnEvaluationFormPropsMixin.EvaluationFormItemEnablementConditionProperty |
Python | aws_cdk.cfn_property_mixins.aws_connect.CfnEvaluationFormPropsMixin.EvaluationFormItemEnablementConditionProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_connect » 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 { aws_connect as connect } from '@aws-cdk/cfn-property-mixins';
const evaluationFormItemEnablementConditionProperty: connect.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