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.
This field is required.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 get_action(&self) -> &Option<RecipeAction>
pub fn get_action(&self) -> &Option<RecipeAction>
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 get_condition_expressions(&self) -> &Option<Vec<ConditionExpression>>
pub fn get_condition_expressions(&self) -> &Option<Vec<ConditionExpression>>
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
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
source§impl PartialEq for RecipeStepBuilder
impl PartialEq for RecipeStepBuilder
source§fn eq(&self, other: &RecipeStepBuilder) -> bool
fn eq(&self, other: &RecipeStepBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for RecipeStepBuilder
Auto Trait Implementations§
impl Freeze for RecipeStepBuilder
impl RefUnwindSafe for RecipeStepBuilder
impl Send for RecipeStepBuilder
impl Sync for RecipeStepBuilder
impl Unpin for RecipeStepBuilder
impl UnwindSafe for RecipeStepBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more