Class: Aws::Transfer::Types::DeleteStepDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::Transfer::Types::DeleteStepDetails
- Defined in:
- gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb
Overview
When making an API call, you may pass DeleteStepDetails data as a hash:
{
name: "WorkflowStepName",
source_file_location: "SourceFileLocation",
}
The name of the step, used to identify the delete step.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the step, used as an identifier.
-
#source_file_location ⇒ String
Specifies which file to use as input to the workflow step: either the output from the previous step, or the originally uploaded file for the workflow.
Instance Attribute Details
#name ⇒ String
The name of the step, used as an identifier.
1529 1530 1531 1532 1533 1534 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 1529 class DeleteStepDetails < Struct.new( :name, :source_file_location) SENSITIVE = [] include Aws::Structure end |
#source_file_location ⇒ String
Specifies which file to use as input to the workflow step: either the output from the previous step, or the originally uploaded file for the workflow.
Enter
$\{previous.file\}
to use the previous file as the input. In this case, this workflow step uses the output file from the previous workflow step as input. This is the default value.Enter
$\{original.file\}
to use the originally-uploaded file location as input for this step.
1529 1530 1531 1532 1533 1534 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 1529 class DeleteStepDetails < Struct.new( :name, :source_file_location) SENSITIVE = [] include Aws::Structure end |