interface EvaluationFormItemEnablementConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Connect.CfnEvaluationFormPropsMixin.EvaluationFormItemEnablementConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsconnect#CfnEvaluationFormPropsMixin_EvaluationFormItemEnablementConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.connect.CfnEvaluationFormPropsMixin.EvaluationFormItemEnablementConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_connect.CfnEvaluationFormPropsMixin.EvaluationFormItemEnablementConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_connect » CfnEvaluationFormPropsMixin » EvaluationFormItemEnablementConfigurationProperty |
An item enablement configuration.
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 evaluationFormItemEnablementConfigurationProperty: connect.CfnEvaluationFormPropsMixin.EvaluationFormItemEnablementConfigurationProperty = {
action: 'action',
condition: {
operands: [{
expression: {
comparator: 'comparator',
source: {
refId: 'refId',
type: 'type',
},
values: [{
refId: 'refId',
type: 'type',
}],
},
}],
operator: 'operator',
},
defaultAction: 'defaultAction',
};
Properties
| Name | Type | Description |
|---|---|---|
| action? | string | An enablement action that if condition is satisfied. |
| condition? | IResolvable | Evaluation | A condition for item enablement configuration. |
| default | string | An enablement action that if condition is not satisfied. |
action?
Type:
string
(optional)
An enablement action that if condition is satisfied.
condition?
Type:
IResolvable | Evaluation
(optional)
A condition for item enablement configuration.
defaultAction?
Type:
string
(optional)
An enablement action that if condition is not satisfied.

.NET
Go
Java
Python
TypeScript