Interface BatchDeleteRecipeVersionResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<BatchDeleteRecipeVersionResponse.Builder,BatchDeleteRecipeVersionResponse>,DataBrewResponse.Builder,SdkBuilder<BatchDeleteRecipeVersionResponse.Builder,BatchDeleteRecipeVersionResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- BatchDeleteRecipeVersionResponse
public static interface BatchDeleteRecipeVersionResponse.Builder extends DataBrewResponse.Builder, SdkPojo, CopyableBuilder<BatchDeleteRecipeVersionResponse.Builder,BatchDeleteRecipeVersionResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BatchDeleteRecipeVersionResponse.Buildererrors(Collection<RecipeVersionErrorDetail> errors)Errors, if any, that occurred while attempting to delete the recipe versions.BatchDeleteRecipeVersionResponse.Buildererrors(Consumer<RecipeVersionErrorDetail.Builder>... errors)Errors, if any, that occurred while attempting to delete the recipe versions.BatchDeleteRecipeVersionResponse.Buildererrors(RecipeVersionErrorDetail... errors)Errors, if any, that occurred while attempting to delete the recipe versions.BatchDeleteRecipeVersionResponse.Buildername(String name)The name of the recipe that was modified.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.databrew.model.DataBrewResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
name
BatchDeleteRecipeVersionResponse.Builder name(String name)
The name of the recipe that was modified.
- Parameters:
name- The name of the recipe that was modified.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
errors
BatchDeleteRecipeVersionResponse.Builder errors(Collection<RecipeVersionErrorDetail> errors)
Errors, if any, that occurred while attempting to delete the recipe versions.
- Parameters:
errors- Errors, if any, that occurred while attempting to delete the recipe versions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
errors
BatchDeleteRecipeVersionResponse.Builder errors(RecipeVersionErrorDetail... errors)
Errors, if any, that occurred while attempting to delete the recipe versions.
- Parameters:
errors- Errors, if any, that occurred while attempting to delete the recipe versions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
errors
BatchDeleteRecipeVersionResponse.Builder errors(Consumer<RecipeVersionErrorDetail.Builder>... errors)
Errors, if any, that occurred while attempting to delete the recipe versions.
This is a convenience method that creates an instance of theRecipeVersionErrorDetail.Builderavoiding the need to create one manually viaRecipeVersionErrorDetail.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#errors(List.) - Parameters:
errors- a consumer that will call methods onRecipeVersionErrorDetail.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#errors(java.util.Collection)
-
-