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.
3185 3186 3187 3188 3189 3190 |
# File 'lib/aws-sdk-transfer/types.rb', line 3185 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.
3185 3186 3187 3188 3189 3190 |
# File 'lib/aws-sdk-transfer/types.rb', line 3185 class ExecutionResults < Struct.new( :steps, :on_exception_steps) SENSITIVE = [] include Aws::Structure end |