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 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 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 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 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
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
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
Returns the “default value” for a type. Read more
source§impl PartialEq<ExecutionResultBuilder> for ExecutionResultBuilder
impl PartialEq<ExecutionResultBuilder> for ExecutionResultBuilder
source§fn eq(&self, other: &ExecutionResultBuilder) -> bool
fn eq(&self, other: &ExecutionResultBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ExecutionResultBuilder
Auto Trait Implementations§
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
Mutably borrows from an owned value. Read more