Class: Aws::Transfer::Types::ExecutionStepResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::Transfer::Types::ExecutionStepResult
- Includes:
- Structure
- Defined in:
- 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
-
#error ⇒ Types::ExecutionError
Specifies the details for an error, if it occurred during execution of the specified workflow step.
-
#outputs ⇒ String
The values for the key/value pair applied as a tag to the file.
-
#step_type ⇒ String
One of the available step types.
Instance Attribute Details
#error ⇒ Types::ExecutionError
Specifies the details for an error, if it occurred during execution of the specified workflow step.
3223 3224 3225 3226 3227 3228 3229 |
# File 'lib/aws-sdk-transfer/types.rb', line 3223 class ExecutionStepResult < Struct.new( :step_type, :outputs, :error) SENSITIVE = [] include Aws::Structure end |
#outputs ⇒ String
The values for the key/value pair applied as a tag to the file. Only applicable if the step type is ‘TAG`.
3223 3224 3225 3226 3227 3228 3229 |
# File 'lib/aws-sdk-transfer/types.rb', line 3223 class ExecutionStepResult < Struct.new( :step_type, :outputs, :error) SENSITIVE = [] include Aws::Structure end |
#step_type ⇒ String
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.
3223 3224 3225 3226 3227 3228 3229 |
# File 'lib/aws-sdk-transfer/types.rb', line 3223 class ExecutionStepResult < Struct.new( :step_type, :outputs, :error) SENSITIVE = [] include Aws::Structure end |