Interface UpdateRecipeRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<UpdateRecipeRequest.Builder,UpdateRecipeRequest>,DataBrewRequest.Builder,SdkBuilder<UpdateRecipeRequest.Builder,UpdateRecipeRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- UpdateRecipeRequest
public static interface UpdateRecipeRequest.Builder extends DataBrewRequest.Builder, SdkPojo, CopyableBuilder<UpdateRecipeRequest.Builder,UpdateRecipeRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UpdateRecipeRequest.Builderdescription(String description)A description of the recipe.UpdateRecipeRequest.Buildername(String name)The name of the recipe to be updated.UpdateRecipeRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)UpdateRecipeRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)UpdateRecipeRequest.Buildersteps(Collection<RecipeStep> steps)One or more steps to be performed by the recipe.UpdateRecipeRequest.Buildersteps(Consumer<RecipeStep.Builder>... steps)One or more steps to be performed by the recipe.UpdateRecipeRequest.Buildersteps(RecipeStep... steps)One or more steps to be performed by the recipe.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.databrew.model.DataBrewRequest.Builder
build
-
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 Detail
-
description
UpdateRecipeRequest.Builder description(String description)
A description of the recipe.
- Parameters:
description- A description of the recipe.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
UpdateRecipeRequest.Builder name(String name)
The name of the recipe to be updated.
- Parameters:
name- The name of the recipe to be updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
steps
UpdateRecipeRequest.Builder steps(Collection<RecipeStep> steps)
One or more steps to be performed by the recipe. Each step consists of an action, and the conditions under which the action should succeed.
- Parameters:
steps- One or more steps to be performed by the recipe. Each step consists of an action, and the conditions under which the action should succeed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
steps
UpdateRecipeRequest.Builder steps(RecipeStep... steps)
One or more steps to be performed by the recipe. Each step consists of an action, and the conditions under which the action should succeed.
- Parameters:
steps- One or more steps to be performed by the recipe. Each step consists of an action, and the conditions under which the action should succeed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
steps
UpdateRecipeRequest.Builder steps(Consumer<RecipeStep.Builder>... steps)
One or more steps to be performed by the recipe. Each step consists of an action, and the conditions under which the action should succeed.
This is a convenience method that creates an instance of theRecipeStep.Builderavoiding the need to create one manually viaRecipeStep.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#steps(List.) - Parameters:
steps- 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:
#steps(java.util.Collection)
-
overrideConfiguration
UpdateRecipeRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
UpdateRecipeRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-