Struct aws_sdk_databrew::client::fluent_builders::UpdateRecipe
source · pub struct UpdateRecipe { /* private fields */ }
Expand description
Fluent builder constructing a request to UpdateRecipe
.
Modifies the definition of the LATEST_WORKING
version of a DataBrew recipe.
Implementations§
source§impl UpdateRecipe
impl UpdateRecipe
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<UpdateRecipe, AwsResponseRetryClassifier>, SdkError<UpdateRecipeError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<UpdateRecipe, AwsResponseRetryClassifier>, SdkError<UpdateRecipeError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<UpdateRecipeOutput, SdkError<UpdateRecipeError>>
pub async fn send(
self
) -> Result<UpdateRecipeOutput, SdkError<UpdateRecipeError>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
A description of the recipe.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
A description of the recipe.
sourcepub fn steps(self, input: RecipeStep) -> Self
pub fn steps(self, input: RecipeStep) -> Self
Appends an item to Steps
.
To override the contents of this collection use set_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.
sourcepub fn set_steps(self, input: Option<Vec<RecipeStep>>) -> Self
pub fn set_steps(self, input: Option<Vec<RecipeStep>>) -> Self
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.
Trait Implementations§
source§impl Clone for UpdateRecipe
impl Clone for UpdateRecipe
source§fn clone(&self) -> UpdateRecipe
fn clone(&self) -> UpdateRecipe
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more