Interface Recipe.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<Recipe.Builder,
,Recipe> SdkBuilder<Recipe.Builder,
,Recipe> SdkPojo
- Enclosing class:
Recipe
@Mutable
@NotThreadSafe
public static interface Recipe.Builder
extends SdkPojo, CopyableBuilder<Recipe.Builder,Recipe>
-
Method Summary
Modifier and TypeMethodDescriptionThe nodes that are inputs to the recipe node, identified by id.inputs
(Collection<String> inputs) The nodes that are inputs to the recipe node, identified by id.The name of the Glue Studio node.default Recipe.Builder
recipeReference
(Consumer<RecipeReference.Builder> recipeReference) A reference to the DataBrew recipe used by the node.recipeReference
(RecipeReference recipeReference) A reference to the DataBrew recipe used by the node.recipeSteps
(Collection<RecipeStep> recipeSteps) Transform steps used in the recipe node.recipeSteps
(Consumer<RecipeStep.Builder>... recipeSteps) Transform steps used in the recipe node.recipeSteps
(RecipeStep... recipeSteps) Transform steps used in the recipe node.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Method Details
-
name
The name of the Glue Studio node.
- Parameters:
name
- The name of the Glue Studio node.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
inputs
The nodes that are inputs to the recipe node, identified by id.
- Parameters:
inputs
- The nodes that are inputs to the recipe node, identified by id.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
inputs
The nodes that are inputs to the recipe node, identified by id.
- Parameters:
inputs
- The nodes that are inputs to the recipe node, identified by id.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
recipeReference
A reference to the DataBrew recipe used by the node.
- Parameters:
recipeReference
- A reference to the DataBrew recipe used by the node.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
recipeReference
A reference to the DataBrew recipe used by the node.
This is a convenience method that creates an instance of theRecipeReference.Builder
avoiding the need to create one manually viaRecipeReference.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed torecipeReference(RecipeReference)
.- Parameters:
recipeReference
- a consumer that will call methods onRecipeReference.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
recipeSteps
Transform steps used in the recipe node.
- Parameters:
recipeSteps
- Transform steps used in the recipe node.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
recipeSteps
Transform steps used in the recipe node.
- Parameters:
recipeSteps
- Transform steps used in the recipe node.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
recipeSteps
Transform steps used in the recipe node.
This is a convenience method that creates an instance of theRecipeStep.Builder
avoiding the need to create one manually viaRecipeStep.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed torecipeSteps(List<RecipeStep>)
.- Parameters:
recipeSteps
- a consumer that will call methods onRecipeStep.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-