Struct aws_sdk_glue::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 transformation action of 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 transformation action of the recipe step.
sourcepub fn get_action(&self) -> &Option<RecipeAction>
pub fn get_action(&self) -> &Option<RecipeAction>
The transformation action of 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.
The condition expressions for the recipe step.
sourcepub fn set_condition_expressions(
self,
input: Option<Vec<ConditionExpression>>,
) -> Self
pub fn set_condition_expressions( self, input: Option<Vec<ConditionExpression>>, ) -> Self
The condition expressions for the recipe step.
sourcepub fn get_condition_expressions(&self) -> &Option<Vec<ConditionExpression>>
pub fn get_condition_expressions(&self) -> &Option<Vec<ConditionExpression>>
The condition expressions for the recipe step.
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 for RecipeStepBuilder
impl PartialEq for RecipeStepBuilder
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
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.