Struct aws_sdk_appflow::model::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>,
}
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.
Implementations
Provides any error message information related to the flow run.
The total number of bytes processed by the flow run.
The total number of bytes written as a result of the flow run.
The number of records processed in the flow run.
Creates a new builder-style object to manufacture ExecutionResult
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ExecutionResult
impl Send for ExecutionResult
impl Sync for ExecutionResult
impl Unpin for ExecutionResult
impl UnwindSafe for ExecutionResult
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more