Struct aws_sdk_ssm::types::builders::ParentStepDetailsBuilder
source · #[non_exhaustive]pub struct ParentStepDetailsBuilder { /* private fields */ }Expand description
A builder for ParentStepDetails.
Implementations§
source§impl ParentStepDetailsBuilder
impl ParentStepDetailsBuilder
sourcepub fn step_execution_id(self, input: impl Into<String>) -> Self
pub fn step_execution_id(self, input: impl Into<String>) -> Self
The unique ID of a step execution.
sourcepub fn set_step_execution_id(self, input: Option<String>) -> Self
pub fn set_step_execution_id(self, input: Option<String>) -> Self
The unique ID of a step execution.
sourcepub fn get_step_execution_id(&self) -> &Option<String>
pub fn get_step_execution_id(&self) -> &Option<String>
The unique ID of a step execution.
sourcepub fn set_step_name(self, input: Option<String>) -> Self
pub fn set_step_name(self, input: Option<String>) -> Self
The name of the step.
sourcepub fn get_step_name(&self) -> &Option<String>
pub fn get_step_name(&self) -> &Option<String>
The name of the step.
sourcepub fn set_action(self, input: Option<String>) -> Self
pub fn set_action(self, input: Option<String>) -> Self
The name of the automation action.
sourcepub fn get_action(&self) -> &Option<String>
pub fn get_action(&self) -> &Option<String>
The name of the automation action.
sourcepub fn iteration(self, input: i32) -> Self
pub fn iteration(self, input: i32) -> Self
The current repetition of the loop represented by an integer.
sourcepub fn set_iteration(self, input: Option<i32>) -> Self
pub fn set_iteration(self, input: Option<i32>) -> Self
The current repetition of the loop represented by an integer.
sourcepub fn get_iteration(&self) -> &Option<i32>
pub fn get_iteration(&self) -> &Option<i32>
The current repetition of the loop represented by an integer.
sourcepub fn iterator_value(self, input: impl Into<String>) -> Self
pub fn iterator_value(self, input: impl Into<String>) -> Self
The current value of the specified iterator in the loop.
sourcepub fn set_iterator_value(self, input: Option<String>) -> Self
pub fn set_iterator_value(self, input: Option<String>) -> Self
The current value of the specified iterator in the loop.
sourcepub fn get_iterator_value(&self) -> &Option<String>
pub fn get_iterator_value(&self) -> &Option<String>
The current value of the specified iterator in the loop.
sourcepub fn build(self) -> ParentStepDetails
pub fn build(self) -> ParentStepDetails
Consumes the builder and constructs a ParentStepDetails.
Trait Implementations§
source§impl Clone for ParentStepDetailsBuilder
impl Clone for ParentStepDetailsBuilder
source§fn clone(&self) -> ParentStepDetailsBuilder
fn clone(&self) -> ParentStepDetailsBuilder
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 ParentStepDetailsBuilder
impl Debug for ParentStepDetailsBuilder
source§impl Default for ParentStepDetailsBuilder
impl Default for ParentStepDetailsBuilder
source§fn default() -> ParentStepDetailsBuilder
fn default() -> ParentStepDetailsBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for ParentStepDetailsBuilder
impl PartialEq for ParentStepDetailsBuilder
source§fn eq(&self, other: &ParentStepDetailsBuilder) -> bool
fn eq(&self, other: &ParentStepDetailsBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ParentStepDetailsBuilder
Auto Trait Implementations§
impl Freeze for ParentStepDetailsBuilder
impl RefUnwindSafe for ParentStepDetailsBuilder
impl Send for ParentStepDetailsBuilder
impl Sync for ParentStepDetailsBuilder
impl Unpin for ParentStepDetailsBuilder
impl UnwindSafe for ParentStepDetailsBuilder
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.