Struct aws_sdk_databrew::types::builders::RecipeStepBuilder
source · #[non_exhaustive]pub struct RecipeStepBuilder { /* private fields */ }
Expand description
A builder for RecipeStep
.
Implementations§
source§impl RecipeStepBuilder
impl RecipeStepBuilder
sourcepub fn action(self, input: RecipeAction) -> Self
pub fn action(self, input: RecipeAction) -> Self
The particular action to be performed in the recipe step.
sourcepub fn set_action(self, input: Option<RecipeAction>) -> Self
pub fn set_action(self, input: Option<RecipeAction>) -> Self
The particular action to be performed in the recipe step.
sourcepub fn condition_expressions(self, input: ConditionExpression) -> Self
pub fn condition_expressions(self, input: ConditionExpression) -> Self
Appends an item to condition_expressions
.
To override the contents of this collection use set_condition_expressions
.
One or more conditions that must be met for the recipe step to succeed.
All of the conditions in the array must be met. In other words, all of the conditions must be combined using a logical AND operation.
sourcepub fn set_condition_expressions(
self,
input: Option<Vec<ConditionExpression>>
) -> Self
pub fn set_condition_expressions( self, input: Option<Vec<ConditionExpression>> ) -> Self
One or more conditions that must be met for the recipe step to succeed.
All of the conditions in the array must be met. In other words, all of the conditions must be combined using a logical AND operation.
sourcepub fn build(self) -> RecipeStep
pub fn build(self) -> RecipeStep
Consumes the builder and constructs a RecipeStep
.
Trait Implementations§
source§impl Clone for RecipeStepBuilder
impl Clone for RecipeStepBuilder
source§fn clone(&self) -> RecipeStepBuilder
fn clone(&self) -> RecipeStepBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for RecipeStepBuilder
impl Debug for RecipeStepBuilder
source§impl Default for RecipeStepBuilder
impl Default for RecipeStepBuilder
source§fn default() -> RecipeStepBuilder
fn default() -> RecipeStepBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<RecipeStepBuilder> for RecipeStepBuilder
impl PartialEq<RecipeStepBuilder> for RecipeStepBuilder
source§fn eq(&self, other: &RecipeStepBuilder) -> bool
fn eq(&self, other: &RecipeStepBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.