Class: Aws::Transfer::Types::ExecutionStepResult

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb

Overview

Specifies the following details for the step: error (if any), outputs (if any), and the step type.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#errorTypes::ExecutionError

Specifies the details for an error, if it occurred during execution of the specified workflow step.



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

class ExecutionStepResult < Struct.new(
  :step_type,
  :outputs,
  :error)
  SENSITIVE = []
  include Aws::Structure
end

#outputsString

The values for the key/value pair applied as a tag to the file. Only applicable if the step type is TAG.

Returns:

  • (String)


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

class ExecutionStepResult < Struct.new(
  :step_type,
  :outputs,
  :error)
  SENSITIVE = []
  include Aws::Structure
end

#step_typeString

One of the available step types.

  • COPY - Copy the file to another location.

  • CUSTOM - Perform a custom step with an Lambda function target.

  • DECRYPT - Decrypt a file that was encrypted before it was uploaded.

  • DELETE - Delete the file.

  • TAG - Add a tag to the file.

Returns:

  • (String)


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

class ExecutionStepResult < Struct.new(
  :step_type,
  :outputs,
  :error)
  SENSITIVE = []
  include Aws::Structure
end