Class: Aws::Transfer::Types::ExecutionResults
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Transfer::Types::ExecutionResults
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-transfer/types.rb
 
Overview
Specifies the steps in the workflow, as well as the steps to execute in case of any errors during workflow execution.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #on_exception_steps  ⇒ Array<Types::ExecutionStepResult> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specifies the steps (actions) to take if errors are encountered during execution of the workflow.
 - 
  
    
      #steps  ⇒ Array<Types::ExecutionStepResult> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specifies the details for the steps that are in the specified workflow.
 
Instance Attribute Details
#on_exception_steps ⇒ Array<Types::ExecutionStepResult>
Specifies the steps (actions) to take if errors are encountered during execution of the workflow.
      3144 3145 3146 3147 3148 3149  | 
    
      # File 'lib/aws-sdk-transfer/types.rb', line 3144 class ExecutionResults < Struct.new( :steps, :on_exception_steps) SENSITIVE = [] include Aws::Structure end  | 
  
#steps ⇒ Array<Types::ExecutionStepResult>
Specifies the details for the steps that are in the specified workflow.
      3144 3145 3146 3147 3148 3149  | 
    
      # File 'lib/aws-sdk-transfer/types.rb', line 3144 class ExecutionResults < Struct.new( :steps, :on_exception_steps) SENSITIVE = [] include Aws::Structure end  |