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:



3142
3143
3144
3145
3146
3147
# File 'lib/aws-sdk-transfer/types.rb', line 3142

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:



3142
3143
3144
3145
3146
3147
# File 'lib/aws-sdk-transfer/types.rb', line 3142

class ExecutionResults < Struct.new(
  :steps,
  :on_exception_steps)
  SENSITIVE = []
  include Aws::Structure
end