Interface CfnEvaluationForm.EvaluationFormItemEnablementExpressionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEvaluationForm.EvaluationFormItemEnablementExpressionProperty.Jsii$Proxy
- Enclosing class:
CfnEvaluationForm
@Stability(Stable)
public static interface CfnEvaluationForm.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.services.connect.*;
EvaluationFormItemEnablementExpressionProperty evaluationFormItemEnablementExpressionProperty = EvaluationFormItemEnablementExpressionProperty.builder()
.comparator("comparator")
.source(EvaluationFormItemEnablementSourceProperty.builder()
.type("type")
// the properties below are optional
.refId("refId")
.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 forCfnEvaluationForm.EvaluationFormItemEnablementExpressionProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()A comparator to be used against list of values.A source item of enablement expression.A list of values from source item.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
IResolvableorCfnEvaluationForm.EvaluationFormItemEnablementSourceProperty- See Also:
-
getValues
A list of values from source item.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnEvaluationForm.EvaluationFormItemEnablementSourceValueProperty>- See Also:
-
builder
@Stability(Stable) static CfnEvaluationForm.EvaluationFormItemEnablementExpressionProperty.Builder builder()
-