Struct aws_sdk_appflow::model::ExecutionRecord
source · [−]#[non_exhaustive]pub struct ExecutionRecord { /* private fields */ }
Expand description
Specifies information about the past flow run instances for a given flow.
Implementations
sourceimpl ExecutionRecord
impl ExecutionRecord
sourcepub fn execution_id(&self) -> Option<&str>
pub fn execution_id(&self) -> Option<&str>
Specifies the identifier of the given flow run.
sourcepub fn execution_status(&self) -> Option<&ExecutionStatus>
pub fn execution_status(&self) -> Option<&ExecutionStatus>
Specifies the flow run status and whether it is in progress, has completed successfully, or has failed.
sourcepub fn execution_result(&self) -> Option<&ExecutionResult>
pub fn execution_result(&self) -> Option<&ExecutionResult>
Describes the result of the given flow run.
sourcepub fn started_at(&self) -> Option<&DateTime>
pub fn started_at(&self) -> Option<&DateTime>
Specifies the start time of the flow run.
sourcepub fn last_updated_at(&self) -> Option<&DateTime>
pub fn last_updated_at(&self) -> Option<&DateTime>
Specifies the time of the most recent update.
sourcepub fn data_pull_start_time(&self) -> Option<&DateTime>
pub fn data_pull_start_time(&self) -> Option<&DateTime>
The timestamp that determines the first new or updated record to be transferred in the flow run.
sourcepub fn data_pull_end_time(&self) -> Option<&DateTime>
pub fn data_pull_end_time(&self) -> Option<&DateTime>
The timestamp that indicates the last new or updated record to be transferred in the flow run.
sourceimpl ExecutionRecord
impl ExecutionRecord
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ExecutionRecord
.
Trait Implementations
sourceimpl Clone for ExecutionRecord
impl Clone for ExecutionRecord
sourcefn clone(&self) -> ExecutionRecord
fn clone(&self) -> ExecutionRecord
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for ExecutionRecord
impl Debug for ExecutionRecord
sourceimpl PartialEq<ExecutionRecord> for ExecutionRecord
impl PartialEq<ExecutionRecord> for ExecutionRecord
sourcefn eq(&self, other: &ExecutionRecord) -> bool
fn eq(&self, other: &ExecutionRecord) -> bool
impl StructuralPartialEq for ExecutionRecord
Auto Trait Implementations
impl RefUnwindSafe for ExecutionRecord
impl Send for ExecutionRecord
impl Sync for ExecutionRecord
impl Unpin for ExecutionRecord
impl UnwindSafe for ExecutionRecord
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more