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 ==
.