interface EvaluationFormItemEnablementConditionProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.Connect.CfnEvaluationForm.EvaluationFormItemEnablementConditionProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconnect#CfnEvaluationForm_EvaluationFormItemEnablementConditionProperty | 
|  Java | software.amazon.awscdk.services.connect.CfnEvaluationForm.EvaluationFormItemEnablementConditionProperty | 
|  Python | aws_cdk.aws_connect.CfnEvaluationForm.EvaluationFormItemEnablementConditionProperty | 
|  TypeScript | aws-cdk-lib»aws_connect»CfnEvaluationForm»EvaluationFormItemEnablementConditionProperty | 
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-lib';
const evaluationFormItemEnablementConditionProperty: connect.CfnEvaluationForm.EvaluationFormItemEnablementConditionProperty = {
  operands: [{
    expression: {
      comparator: 'comparator',
      source: {
        type: 'type',
        // the properties below are optional
        refId: 'refId',
      },
      values: [{
        refId: 'refId',
        type: 'type',
      }],
    },
  }],
  // the properties below are optional
  operator: 'operator',
};
Properties
| Name | Type | Description | 
|---|---|---|
| operands | IResolvable | (IResolvable | Evaluation)[] | The list of operands that compose the condition. | 
| operator? | string | The logical operator used to combine multiple operands, determining how the condition is evaluated as a whole. | 
operands
Type:
IResolvable | (IResolvable | Evaluation)[]
The list of operands that compose the condition.
Each operand represents a specific criteria to be evaluated.
operator?
Type:
string
(optional)
The logical operator used to combine multiple operands, determining how the condition is evaluated as a whole.
