Class CfnEvaluationForm.EvaluationFormItemEnablementConfigurationProperty
An item enablement configuration.
Inherited Members
Namespace: Amazon.CDK.AWS.Connect
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnEvaluationForm.EvaluationFormItemEnablementConfigurationProperty : CfnEvaluationForm.IEvaluationFormItemEnablementConfigurationProperty
Syntax (vb)
Public Class CfnEvaluationForm.EvaluationFormItemEnablementConfigurationProperty Implements CfnEvaluationForm.IEvaluationFormItemEnablementConfigurationProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Connect;
var evaluationFormItemEnablementConfigurationProperty = new EvaluationFormItemEnablementConfigurationProperty {
Action = "action",
Condition = new EvaluationFormItemEnablementConditionProperty {
Operands = new [] { new EvaluationFormItemEnablementConditionOperandProperty {
Expression = new EvaluationFormItemEnablementExpressionProperty {
Comparator = "comparator",
Source = new EvaluationFormItemEnablementSourceProperty {
Type = "type",
// the properties below are optional
RefId = "refId"
},
Values = new [] { new EvaluationFormItemEnablementSourceValueProperty {
RefId = "refId",
Type = "type"
} }
}
} },
// the properties below are optional
Operator = "operator"
},
// the properties below are optional
DefaultAction = "defaultAction"
};
Synopsis
Constructors
| EvaluationFormItemEnablementConfigurationProperty() | An item enablement configuration. |
Properties
| Action | An enablement action that if condition is satisfied. |
| Condition | A condition for item enablement configuration. |
| DefaultAction | An enablement action that if condition is not satisfied. |
Constructors
EvaluationFormItemEnablementConfigurationProperty()
An item enablement configuration.
public EvaluationFormItemEnablementConfigurationProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Connect;
var evaluationFormItemEnablementConfigurationProperty = new EvaluationFormItemEnablementConfigurationProperty {
Action = "action",
Condition = new EvaluationFormItemEnablementConditionProperty {
Operands = new [] { new EvaluationFormItemEnablementConditionOperandProperty {
Expression = new EvaluationFormItemEnablementExpressionProperty {
Comparator = "comparator",
Source = new EvaluationFormItemEnablementSourceProperty {
Type = "type",
// the properties below are optional
RefId = "refId"
},
Values = new [] { new EvaluationFormItemEnablementSourceValueProperty {
RefId = "refId",
Type = "type"
} }
}
} },
// the properties below are optional
Operator = "operator"
},
// the properties below are optional
DefaultAction = "defaultAction"
};
Properties
Action
An enablement action that if condition is satisfied.
public string Action { get; set; }
Property Value
Remarks
Condition
A condition for item enablement configuration.
public object Condition { get; set; }
Property Value
Remarks
Type union: either IResolvable or CfnEvaluationForm.IEvaluationFormItemEnablementConditionProperty
DefaultAction
An enablement action that if condition is not satisfied.
public string? DefaultAction { get; set; }