Interface UpdateRecipeRequest.Builder
- All Superinterfaces:
 AwsRequest.Builder,Buildable,CopyableBuilder<UpdateRecipeRequest.Builder,,UpdateRecipeRequest> DataBrewRequest.Builder,SdkBuilder<UpdateRecipeRequest.Builder,,UpdateRecipeRequest> SdkPojo,SdkRequest.Builder
- Enclosing class:
 UpdateRecipeRequest
@Mutable
@NotThreadSafe
public static interface UpdateRecipeRequest.Builder
extends DataBrewRequest.Builder, SdkPojo, CopyableBuilder<UpdateRecipeRequest.Builder,UpdateRecipeRequest> 
- 
Method Summary
Modifier and TypeMethodDescriptiondescription(String description) A description of the recipe.The name of the recipe to be updated.overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Add an optional request override configuration.overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration) Add an optional request override configuration.steps(Collection<RecipeStep> steps) One or more steps to be performed by the recipe.steps(Consumer<RecipeStep.Builder>... steps) One or more steps to be performed by the recipe.steps(RecipeStep... steps) One or more steps to be performed by the recipe.Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfigurationMethods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copyMethods inherited from interface software.amazon.awssdk.services.databrew.model.DataBrewRequest.Builder
buildMethods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, buildMethods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields 
- 
Method Details
- 
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
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
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
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
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 tosteps(List<RecipeStep>).- 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:
 
 - 
overrideConfiguration
UpdateRecipeRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration) Description copied from interface:AwsRequest.BuilderAdd an optional request override configuration.- Specified by:
 overrideConfigurationin interfaceAwsRequest.Builder- Parameters:
 overrideConfiguration- The override configuration.- Returns:
 - This object for method chaining.
 
 - 
overrideConfiguration
UpdateRecipeRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Description copied from interface:AwsRequest.BuilderAdd an optional request override configuration.- Specified by:
 overrideConfigurationin interfaceAwsRequest.Builder- Parameters:
 builderConsumer- AConsumerto which an emptyAwsRequestOverrideConfiguration.Builderwill be given.- Returns:
 - This object for method chaining.
 
 
 -