Struct aws_sdk_appflow::types::builders::ExecutionDetailsBuilder
source · #[non_exhaustive]pub struct ExecutionDetailsBuilder { /* private fields */ }
Expand description
A builder for ExecutionDetails
.
Implementations§
source§impl ExecutionDetailsBuilder
impl ExecutionDetailsBuilder
sourcepub fn most_recent_execution_message(self, input: impl Into<String>) -> Self
pub fn most_recent_execution_message(self, input: impl Into<String>) -> Self
Describes the details of the most recent flow run.
sourcepub fn set_most_recent_execution_message(self, input: Option<String>) -> Self
pub fn set_most_recent_execution_message(self, input: Option<String>) -> Self
Describes the details of the most recent flow run.
sourcepub fn get_most_recent_execution_message(&self) -> &Option<String>
pub fn get_most_recent_execution_message(&self) -> &Option<String>
Describes the details of the most recent flow run.
sourcepub fn most_recent_execution_time(self, input: DateTime) -> Self
pub fn most_recent_execution_time(self, input: DateTime) -> Self
Specifies the time of the most recent flow run.
sourcepub fn set_most_recent_execution_time(self, input: Option<DateTime>) -> Self
pub fn set_most_recent_execution_time(self, input: Option<DateTime>) -> Self
Specifies the time of the most recent flow run.
sourcepub fn get_most_recent_execution_time(&self) -> &Option<DateTime>
pub fn get_most_recent_execution_time(&self) -> &Option<DateTime>
Specifies the time of the most recent flow run.
sourcepub fn most_recent_execution_status(self, input: ExecutionStatus) -> Self
pub fn most_recent_execution_status(self, input: ExecutionStatus) -> Self
Specifies the status of the most recent flow run.
sourcepub fn set_most_recent_execution_status(
self,
input: Option<ExecutionStatus>,
) -> Self
pub fn set_most_recent_execution_status( self, input: Option<ExecutionStatus>, ) -> Self
Specifies the status of the most recent flow run.
sourcepub fn get_most_recent_execution_status(&self) -> &Option<ExecutionStatus>
pub fn get_most_recent_execution_status(&self) -> &Option<ExecutionStatus>
Specifies the status of the most recent flow run.
sourcepub fn build(self) -> ExecutionDetails
pub fn build(self) -> ExecutionDetails
Consumes the builder and constructs a ExecutionDetails
.
Trait Implementations§
source§impl Clone for ExecutionDetailsBuilder
impl Clone for ExecutionDetailsBuilder
source§fn clone(&self) -> ExecutionDetailsBuilder
fn clone(&self) -> ExecutionDetailsBuilder
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 ExecutionDetailsBuilder
impl Debug for ExecutionDetailsBuilder
source§impl Default for ExecutionDetailsBuilder
impl Default for ExecutionDetailsBuilder
source§fn default() -> ExecutionDetailsBuilder
fn default() -> ExecutionDetailsBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for ExecutionDetailsBuilder
impl PartialEq for ExecutionDetailsBuilder
source§fn eq(&self, other: &ExecutionDetailsBuilder) -> bool
fn eq(&self, other: &ExecutionDetailsBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ExecutionDetailsBuilder
Auto Trait Implementations§
impl Freeze for ExecutionDetailsBuilder
impl RefUnwindSafe for ExecutionDetailsBuilder
impl Send for ExecutionDetailsBuilder
impl Sync for ExecutionDetailsBuilder
impl Unpin for ExecutionDetailsBuilder
impl UnwindSafe for ExecutionDetailsBuilder
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.