Struct aws_sdk_transfer::types::ExecutionResults
source · #[non_exhaustive]pub struct ExecutionResults {
pub steps: Option<Vec<ExecutionStepResult>>,
pub on_exception_steps: Option<Vec<ExecutionStepResult>>,
}
Expand description
Specifies the steps in the workflow, as well as the steps to execute in case of any errors during workflow execution.
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.steps: Option<Vec<ExecutionStepResult>>
Specifies the details for the steps that are in the specified workflow.
on_exception_steps: Option<Vec<ExecutionStepResult>>
Specifies the steps (actions) to take if errors are encountered during execution of the workflow.
Implementations§
source§impl ExecutionResults
impl ExecutionResults
sourcepub fn steps(&self) -> &[ExecutionStepResult]
pub fn steps(&self) -> &[ExecutionStepResult]
Specifies the details for the steps that are in the specified workflow.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .steps.is_none()
.
sourcepub fn on_exception_steps(&self) -> &[ExecutionStepResult]
pub fn on_exception_steps(&self) -> &[ExecutionStepResult]
Specifies the steps (actions) to take if errors are encountered during execution of the workflow.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .on_exception_steps.is_none()
.
source§impl ExecutionResults
impl ExecutionResults
sourcepub fn builder() -> ExecutionResultsBuilder
pub fn builder() -> ExecutionResultsBuilder
Creates a new builder-style object to manufacture ExecutionResults
.
Trait Implementations§
source§impl Clone for ExecutionResults
impl Clone for ExecutionResults
source§fn clone(&self) -> ExecutionResults
fn clone(&self) -> ExecutionResults
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ExecutionResults
impl Debug for ExecutionResults
source§impl PartialEq for ExecutionResults
impl PartialEq for ExecutionResults
source§fn eq(&self, other: &ExecutionResults) -> bool
fn eq(&self, other: &ExecutionResults) -> bool
self
and other
values to be equal, and is used
by ==
.