Interface CreateRecipeRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<CreateRecipeRequest.Builder,CreateRecipeRequest>,DataBrewRequest.Builder,SdkBuilder<CreateRecipeRequest.Builder,CreateRecipeRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- CreateRecipeRequest
public static interface CreateRecipeRequest.Builder extends DataBrewRequest.Builder, SdkPojo, CopyableBuilder<CreateRecipeRequest.Builder,CreateRecipeRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CreateRecipeRequest.Builderdescription(String description)A description for the recipe.CreateRecipeRequest.Buildername(String name)A unique name for the recipe.CreateRecipeRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)CreateRecipeRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)CreateRecipeRequest.Buildersteps(Collection<RecipeStep> steps)An array containing the steps to be performed by the recipe.CreateRecipeRequest.Buildersteps(Consumer<RecipeStep.Builder>... steps)An array containing the steps to be performed by the recipe.CreateRecipeRequest.Buildersteps(RecipeStep... steps)An array containing the steps to be performed by the recipe.CreateRecipeRequest.Buildertags(Map<String,String> tags)Metadata tags to apply to this 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, sdkFields
-
-
-
-
Method Detail
-
description
CreateRecipeRequest.Builder description(String description)
A description for the recipe.
- Parameters:
description- A description for the recipe.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
CreateRecipeRequest.Builder name(String name)
A unique name for the recipe. Valid characters are alphanumeric (A-Z, a-z, 0-9), hyphen (-), period (.), and space.
- Parameters:
name- A unique name for the recipe. Valid characters are alphanumeric (A-Z, a-z, 0-9), hyphen (-), period (.), and space.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
steps
CreateRecipeRequest.Builder steps(Collection<RecipeStep> steps)
An array containing the steps to be performed by the recipe. Each recipe step consists of one recipe action and (optionally) an array of condition expressions.
- Parameters:
steps- An array containing the steps to be performed by the recipe. Each recipe step consists of one recipe action and (optionally) an array of condition expressions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
steps
CreateRecipeRequest.Builder steps(RecipeStep... steps)
An array containing the steps to be performed by the recipe. Each recipe step consists of one recipe action and (optionally) an array of condition expressions.
- Parameters:
steps- An array containing the steps to be performed by the recipe. Each recipe step consists of one recipe action and (optionally) an array of condition expressions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
steps
CreateRecipeRequest.Builder steps(Consumer<RecipeStep.Builder>... steps)
An array containing the steps to be performed by the recipe. Each recipe step consists of one recipe action and (optionally) an array of condition expressions.
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)
-
tags
CreateRecipeRequest.Builder tags(Map<String,String> tags)
Metadata tags to apply to this recipe.
- Parameters:
tags- Metadata tags to apply to this recipe.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
CreateRecipeRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
CreateRecipeRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-