Struct aws_sdk_appflow::model::ExecutionRecord
source · [−]#[non_exhaustive]pub struct ExecutionRecord {
pub execution_id: Option<String>,
pub execution_status: Option<ExecutionStatus>,
pub execution_result: Option<ExecutionResult>,
pub started_at: Option<DateTime>,
pub last_updated_at: Option<DateTime>,
pub data_pull_start_time: Option<DateTime>,
pub data_pull_end_time: Option<DateTime>,
}
Expand description
Specifies information about the past flow run instances for a given flow.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.execution_id: Option<String>
Specifies the identifier of the given flow run.
execution_status: Option<ExecutionStatus>
Specifies the flow run status and whether it is in progress, has completed successfully, or has failed.
execution_result: Option<ExecutionResult>
Describes the result of the given flow run.
started_at: Option<DateTime>
Specifies the start time of the flow run.
last_updated_at: Option<DateTime>
Specifies the time of the most recent update.
data_pull_start_time: Option<DateTime>
The timestamp that determines the first new or updated record to be transferred in the flow run.
data_pull_end_time: Option<DateTime>
The timestamp that indicates the last new or updated record to be transferred in the flow run.
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 more
sourceimpl 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
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ExecutionRecord) -> bool
fn ne(&self, other: &ExecutionRecord) -> bool
This method tests for !=
.
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 T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more