@Stability(value=Stable)
public static interface CfnRecipe.RecipeStepProperty
extends software.amazon.jsii.JsiiSerializable
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.*;
RecipeStepProperty recipeStepProperty = RecipeStepProperty.builder()
.action(ActionProperty.builder()
.operation("operation")
// the properties below are optional
.parameters(Map.of(
"parametersKey", "parameters"))
.build())
// the properties below are optional
.conditionExpressions(List.of(ConditionExpressionProperty.builder()
.condition("condition")
.targetColumn("targetColumn")
// the properties below are optional
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnRecipe.RecipeStepProperty.Builder
A builder for
CfnRecipe.RecipeStepProperty |
static class |
CfnRecipe.RecipeStepProperty.Jsii$Proxy
An implementation for
CfnRecipe.RecipeStepProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnRecipe.RecipeStepProperty.Builder |
builder() |
Object |
getAction()
The particular action to be performed in the recipe step.
|
default Object |
getConditionExpressions()
One or more conditions that must be met for the recipe step to succeed.
|
@Stability(value=Stable) @NotNull Object getAction()
@Stability(value=Stable) @Nullable default Object getConditionExpressions()
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.
@Stability(value=Stable) static CfnRecipe.RecipeStepProperty.Builder builder()
Copyright © 2022. All rights reserved.