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 |
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-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)[] | 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)[]
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