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
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
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) -> Option<&[ExecutionStepResult]>
pub fn steps(&self) -> Option<&[ExecutionStepResult]>
Specifies the details for the steps that are in the specified workflow.
sourcepub fn on_exception_steps(&self) -> Option<&[ExecutionStepResult]>
pub fn on_exception_steps(&self) -> Option<&[ExecutionStepResult]>
Specifies the steps (actions) to take if errors are encountered during execution of the workflow.
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
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 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
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ExecutionResults
Auto Trait Implementations§
impl RefUnwindSafe for ExecutionResults
impl Send for ExecutionResults
impl Sync for ExecutionResults
impl Unpin for ExecutionResults
impl UnwindSafe for ExecutionResults
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