Struct aws_sdk_emr::types::builders::StepTimelineBuilder
source · #[non_exhaustive]pub struct StepTimelineBuilder { /* private fields */ }
Expand description
A builder for StepTimeline
.
Implementations§
source§impl StepTimelineBuilder
impl StepTimelineBuilder
sourcepub fn creation_date_time(self, input: DateTime) -> Self
pub fn creation_date_time(self, input: DateTime) -> Self
The date and time when the cluster step was created.
sourcepub fn set_creation_date_time(self, input: Option<DateTime>) -> Self
pub fn set_creation_date_time(self, input: Option<DateTime>) -> Self
The date and time when the cluster step was created.
sourcepub fn get_creation_date_time(&self) -> &Option<DateTime>
pub fn get_creation_date_time(&self) -> &Option<DateTime>
The date and time when the cluster step was created.
sourcepub fn start_date_time(self, input: DateTime) -> Self
pub fn start_date_time(self, input: DateTime) -> Self
The date and time when the cluster step execution started.
sourcepub fn set_start_date_time(self, input: Option<DateTime>) -> Self
pub fn set_start_date_time(self, input: Option<DateTime>) -> Self
The date and time when the cluster step execution started.
sourcepub fn get_start_date_time(&self) -> &Option<DateTime>
pub fn get_start_date_time(&self) -> &Option<DateTime>
The date and time when the cluster step execution started.
sourcepub fn end_date_time(self, input: DateTime) -> Self
pub fn end_date_time(self, input: DateTime) -> Self
The date and time when the cluster step execution completed or failed.
sourcepub fn set_end_date_time(self, input: Option<DateTime>) -> Self
pub fn set_end_date_time(self, input: Option<DateTime>) -> Self
The date and time when the cluster step execution completed or failed.
sourcepub fn get_end_date_time(&self) -> &Option<DateTime>
pub fn get_end_date_time(&self) -> &Option<DateTime>
The date and time when the cluster step execution completed or failed.
sourcepub fn build(self) -> StepTimeline
pub fn build(self) -> StepTimeline
Consumes the builder and constructs a StepTimeline
.
Trait Implementations§
source§impl Clone for StepTimelineBuilder
impl Clone for StepTimelineBuilder
source§fn clone(&self) -> StepTimelineBuilder
fn clone(&self) -> StepTimelineBuilder
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 StepTimelineBuilder
impl Debug for StepTimelineBuilder
source§impl Default for StepTimelineBuilder
impl Default for StepTimelineBuilder
source§fn default() -> StepTimelineBuilder
fn default() -> StepTimelineBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for StepTimelineBuilder
impl PartialEq for StepTimelineBuilder
impl StructuralPartialEq for StepTimelineBuilder
Auto Trait Implementations§
impl Freeze for StepTimelineBuilder
impl RefUnwindSafe for StepTimelineBuilder
impl Send for StepTimelineBuilder
impl Sync for StepTimelineBuilder
impl Unpin for StepTimelineBuilder
impl UnwindSafe for StepTimelineBuilder
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
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.