Interface CfnRecipePropsMixin.RecipeStepProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRecipePropsMixin.RecipeStepProperty.Jsii$Proxy
- Enclosing class:
CfnRecipePropsMixin
@Stability(Stable)
public static interface CfnRecipePropsMixin.RecipeStepProperty
extends software.amazon.jsii.JsiiSerializable
Represents a single step from a DataBrew recipe to be 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.cfnpropertymixins.services.databrew.*;
RecipeStepProperty recipeStepProperty = RecipeStepProperty.builder()
.action(ActionProperty.builder()
.operation("operation")
.parameters(Map.of(
"parametersKey", "parameters"))
.build())
.conditionExpressions(List.of(ConditionExpressionProperty.builder()
.condition("condition")
.targetColumn("targetColumn")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnRecipePropsMixin.RecipeStepPropertystatic final classAn implementation forCfnRecipePropsMixin.RecipeStepProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAction
The particular action to be performed in the recipe step.Returns union: either
IResolvableorCfnRecipePropsMixin.ActionProperty- See Also:
-
getConditionExpressions
One or more conditions that must be met for the recipe step to succeed.All of the conditions in the array must be met. In other words, all of the conditions must be combined using a logical AND operation.
Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnRecipePropsMixin.ConditionExpressionProperty>- See Also:
-
builder
-