#[non_exhaustive]pub struct AddJobFlowStepsOutputBuilder { /* private fields */ }
Expand description
A builder for AddJobFlowStepsOutput
.
Implementations§
source§impl AddJobFlowStepsOutputBuilder
impl AddJobFlowStepsOutputBuilder
sourcepub fn step_ids(self, input: impl Into<String>) -> Self
pub fn step_ids(self, input: impl Into<String>) -> Self
Appends an item to step_ids
.
To override the contents of this collection use set_step_ids
.
The identifiers of the list of steps added to the job flow.
sourcepub fn set_step_ids(self, input: Option<Vec<String>>) -> Self
pub fn set_step_ids(self, input: Option<Vec<String>>) -> Self
The identifiers of the list of steps added to the job flow.
sourcepub fn get_step_ids(&self) -> &Option<Vec<String>>
pub fn get_step_ids(&self) -> &Option<Vec<String>>
The identifiers of the list of steps added to the job flow.
sourcepub fn build(self) -> AddJobFlowStepsOutput
pub fn build(self) -> AddJobFlowStepsOutput
Consumes the builder and constructs a AddJobFlowStepsOutput
.
Trait Implementations§
source§impl Clone for AddJobFlowStepsOutputBuilder
impl Clone for AddJobFlowStepsOutputBuilder
source§fn clone(&self) -> AddJobFlowStepsOutputBuilder
fn clone(&self) -> AddJobFlowStepsOutputBuilder
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 AddJobFlowStepsOutputBuilder
impl Debug for AddJobFlowStepsOutputBuilder
source§impl Default for AddJobFlowStepsOutputBuilder
impl Default for AddJobFlowStepsOutputBuilder
source§fn default() -> AddJobFlowStepsOutputBuilder
fn default() -> AddJobFlowStepsOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for AddJobFlowStepsOutputBuilder
impl PartialEq for AddJobFlowStepsOutputBuilder
source§fn eq(&self, other: &AddJobFlowStepsOutputBuilder) -> bool
fn eq(&self, other: &AddJobFlowStepsOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AddJobFlowStepsOutputBuilder
Auto Trait Implementations§
impl Freeze for AddJobFlowStepsOutputBuilder
impl RefUnwindSafe for AddJobFlowStepsOutputBuilder
impl Send for AddJobFlowStepsOutputBuilder
impl Sync for AddJobFlowStepsOutputBuilder
impl Unpin for AddJobFlowStepsOutputBuilder
impl UnwindSafe for AddJobFlowStepsOutputBuilder
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> 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.