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 ==
.impl StructuralPartialEq for ExecutionResultBuilder
Auto Trait Implementations§
impl Freeze for ExecutionResultBuilder
impl RefUnwindSafe for ExecutionResultBuilder
impl Send for ExecutionResultBuilder
impl Sync for ExecutionResultBuilder
impl Unpin for ExecutionResultBuilder
impl UnwindSafe for ExecutionResultBuilder
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