Interface CfnEvaluationFormPropsMixin.EvaluationFormItemEnablementExpressionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEvaluationFormPropsMixin.EvaluationFormItemEnablementExpressionProperty.Jsii$Proxy
- Enclosing class:
CfnEvaluationFormPropsMixin
@Stability(Stable)
public static interface CfnEvaluationFormPropsMixin.EvaluationFormItemEnablementExpressionProperty
extends software.amazon.jsii.JsiiSerializable
An expression that defines a basic building block of conditional enablement.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.connect.*;
EvaluationFormItemEnablementExpressionProperty evaluationFormItemEnablementExpressionProperty = EvaluationFormItemEnablementExpressionProperty.builder()
.comparator("comparator")
.source(EvaluationFormItemEnablementSourceProperty.builder()
.refId("refId")
.type("type")
.build())
.values(List.of(EvaluationFormItemEnablementSourceValueProperty.builder()
.refId("refId")
.type("type")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnEvaluationFormPropsMixin.EvaluationFormItemEnablementExpressionProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getComparator
A comparator to be used against list of values.- See Also:
-
getSource
A source item of enablement expression.Returns union: either
IResolvableorCfnEvaluationFormPropsMixin.EvaluationFormItemEnablementSourceProperty- See Also:
-
getValues
A list of values from source item.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnEvaluationFormPropsMixin.EvaluationFormItemEnablementSourceValueProperty>- See Also:
-
builder
@Stability(Stable) static CfnEvaluationFormPropsMixin.EvaluationFormItemEnablementExpressionProperty.Builder builder()
-