Struct aws_sdk_appflow::types::builders::ExecutionResultBuilder
source · #[non_exhaustive]pub struct ExecutionResultBuilder { /* private fields */ }
Expand description
A builder for ExecutionResult
.
Implementations§
source§impl ExecutionResultBuilder
impl ExecutionResultBuilder
sourcepub fn error_info(self, input: ErrorInfo) -> Self
pub fn error_info(self, input: ErrorInfo) -> Self
Provides any error message information related to the flow run.
sourcepub fn set_error_info(self, input: Option<ErrorInfo>) -> Self
pub fn set_error_info(self, input: Option<ErrorInfo>) -> Self
Provides any error message information related to the flow run.
sourcepub fn get_error_info(&self) -> &Option<ErrorInfo>
pub fn get_error_info(&self) -> &Option<ErrorInfo>
Provides any error message information related to the flow run.
sourcepub fn bytes_processed(self, input: i64) -> Self
pub fn bytes_processed(self, input: i64) -> Self
The total number of bytes processed by the flow run.
sourcepub fn set_bytes_processed(self, input: Option<i64>) -> Self
pub fn set_bytes_processed(self, input: Option<i64>) -> Self
The total number of bytes processed by the flow run.
sourcepub fn get_bytes_processed(&self) -> &Option<i64>
pub fn get_bytes_processed(&self) -> &Option<i64>
The total number of bytes processed by the flow run.
sourcepub fn bytes_written(self, input: i64) -> Self
pub fn bytes_written(self, input: i64) -> Self
The total number of bytes written as a result of the flow run.
sourcepub fn set_bytes_written(self, input: Option<i64>) -> Self
pub fn set_bytes_written(self, input: Option<i64>) -> Self
The total number of bytes written as a result of the flow run.
sourcepub fn get_bytes_written(&self) -> &Option<i64>
pub fn get_bytes_written(&self) -> &Option<i64>
The total number of bytes written as a result of the flow run.
sourcepub fn records_processed(self, input: i64) -> Self
pub fn records_processed(self, input: i64) -> Self
The number of records processed in the flow run.
sourcepub fn set_records_processed(self, input: Option<i64>) -> Self
pub fn set_records_processed(self, input: Option<i64>) -> Self
The number of records processed in the flow run.
sourcepub fn get_records_processed(&self) -> &Option<i64>
pub fn get_records_processed(&self) -> &Option<i64>
The number of records processed in the flow run.
sourcepub fn num_parallel_processes(self, input: i64) -> Self
pub fn num_parallel_processes(self, input: i64) -> Self
The number of processes that Amazon AppFlow ran at the same time when it retrieved your data.
sourcepub fn set_num_parallel_processes(self, input: Option<i64>) -> Self
pub fn set_num_parallel_processes(self, input: Option<i64>) -> Self
The number of processes that Amazon AppFlow ran at the same time when it retrieved your data.
sourcepub fn get_num_parallel_processes(&self) -> &Option<i64>
pub fn get_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, input: i64) -> Self
pub fn max_page_size(self, input: i64) -> Self
The maximum number of records that Amazon AppFlow receives in each page of the response from your SAP application.
sourcepub fn set_max_page_size(self, input: Option<i64>) -> Self
pub fn set_max_page_size(self, input: Option<i64>) -> Self
The maximum number of records that Amazon AppFlow receives in each page of the response from your SAP application.
sourcepub fn get_max_page_size(&self) -> &Option<i64>
pub fn get_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.
sourcepub fn build(self) -> ExecutionResult
pub fn build(self) -> ExecutionResult
Consumes the builder and constructs a ExecutionResult
.
Trait Implementations§
source§impl Clone for ExecutionResultBuilder
impl Clone for ExecutionResultBuilder
source§fn clone(&self) -> ExecutionResultBuilder
fn clone(&self) -> ExecutionResultBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ExecutionResultBuilder
impl Debug for ExecutionResultBuilder
source§impl Default for ExecutionResultBuilder
impl Default for ExecutionResultBuilder
source§fn default() -> ExecutionResultBuilder
fn default() -> ExecutionResultBuilder
source§impl PartialEq for ExecutionResultBuilder
impl PartialEq for ExecutionResultBuilder
source§fn eq(&self, other: &ExecutionResultBuilder) -> bool
fn eq(&self, other: &ExecutionResultBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.