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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-transfer/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:



3136
3137
3138
3139
3140
3141
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 3136

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:



3136
3137
3138
3139
3140
3141
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 3136

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