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 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 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 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<ExecutionDetailsBuilder> for ExecutionDetailsBuilder
impl PartialEq<ExecutionDetailsBuilder> 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 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