Class: Aws::Transfer::Types::ExecutionResults

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#on_exception_stepsArray<Types::ExecutionStepResult>

Specifies the steps (actions) to take if errors are encountered during execution of the workflow.

Returns:



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

#stepsArray<Types::ExecutionStepResult>

Specifies the details for the steps that are in the specified workflow.

Returns:



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