Struct aws_sdk_appflow::types::ExecutionResult
source · #[non_exhaustive]pub struct ExecutionResult {
pub error_info: Option<ErrorInfo>,
pub bytes_processed: Option<i64>,
pub bytes_written: Option<i64>,
pub records_processed: Option<i64>,
pub num_parallel_processes: Option<i64>,
pub max_page_size: Option<i64>,
}
Expand description
Specifies the end result of the flow run.
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.error_info: Option<ErrorInfo>
Provides any error message information related to the flow run.
bytes_processed: Option<i64>
The total number of bytes processed by the flow run.
bytes_written: Option<i64>
The total number of bytes written as a result of the flow run.
records_processed: Option<i64>
The number of records processed in the flow run.
num_parallel_processes: Option<i64>
The number of processes that Amazon AppFlow ran at the same time when it retrieved your data.
max_page_size: Option<i64>
The maximum number of records that Amazon AppFlow receives in each page of the response from your SAP application.
Implementations§
source§impl ExecutionResult
impl ExecutionResult
sourcepub fn error_info(&self) -> Option<&ErrorInfo>
pub fn error_info(&self) -> Option<&ErrorInfo>
Provides any error message information related to the flow run.
sourcepub fn bytes_processed(&self) -> Option<i64>
pub fn bytes_processed(&self) -> Option<i64>
The total number of bytes processed by the flow run.
sourcepub fn bytes_written(&self) -> Option<i64>
pub fn bytes_written(&self) -> Option<i64>
The total number of bytes written as a result of the flow run.
sourcepub fn records_processed(&self) -> Option<i64>
pub fn records_processed(&self) -> Option<i64>
The number of records processed in the flow run.
sourcepub fn num_parallel_processes(&self) -> Option<i64>
pub fn num_parallel_processes(&self) -> Option<i64>
The number of processes that Amazon AppFlow ran at the same time when it retrieved your data.
sourcepub fn max_page_size(&self) -> Option<i64>
pub fn max_page_size(&self) -> Option<i64>
The maximum number of records that Amazon AppFlow receives in each page of the response from your SAP application.
source§impl ExecutionResult
impl ExecutionResult
sourcepub fn builder() -> ExecutionResultBuilder
pub fn builder() -> ExecutionResultBuilder
Creates a new builder-style object to manufacture ExecutionResult
.
Trait Implementations§
source§impl Clone for ExecutionResult
impl Clone for ExecutionResult
source§fn clone(&self) -> ExecutionResult
fn clone(&self) -> ExecutionResult
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ExecutionResult
impl Debug for ExecutionResult
source§impl PartialEq for ExecutionResult
impl PartialEq for ExecutionResult
source§fn eq(&self, other: &ExecutionResult) -> bool
fn eq(&self, other: &ExecutionResult) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ExecutionResult
Auto Trait Implementations§
impl Freeze for ExecutionResult
impl RefUnwindSafe for ExecutionResult
impl Send for ExecutionResult
impl Sync for ExecutionResult
impl Unpin for ExecutionResult
impl UnwindSafe for ExecutionResult
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
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)
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>
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>
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 more