Interface CfnRecipe.ConditionExpressionProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnRecipe.ConditionExpressionProperty.Jsii$Proxy
Enclosing class:
CfnRecipe

@Stability(Stable) public static interface CfnRecipe.ConditionExpressionProperty extends software.amazon.jsii.JsiiSerializable
Represents an individual condition that evaluates to true or false.

Conditions are used with recipe actions. The action is only performed for column values where the condition evaluates to true.

If a recipe requires more than one condition, then the recipe must specify multiple ConditionExpression elements. Each condition is applied to the rows in a dataset first, before the recipe action is performed.

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.databrew.*;
 ConditionExpressionProperty conditionExpressionProperty = ConditionExpressionProperty.builder()
         .condition("condition")
         .targetColumn("targetColumn")
         // the properties below are optional
         .value("value")
         .build();
 

See Also: