Class: Aws::Transfer::Types::DeleteStepDetails

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

Overview

The name of the step, used to identify the delete step.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the step, used as an identifier.

Returns:

  • (String)


1483
1484
1485
1486
1487
1488
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 1483

class DeleteStepDetails < Struct.new(
  :name,
  :source_file_location)
  SENSITIVE = []
  include Aws::Structure
end

#source_file_locationString

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.

  • To use the previous file as the input, enter $\{previous.file\}. In this case, this workflow step uses the output file from the previous workflow step as input. This is the default value.

  • To use the originally uploaded file location as input for this step, enter $\{original.file\}.

Returns:

  • (String)


1483
1484
1485
1486
1487
1488
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 1483

class DeleteStepDetails < Struct.new(
  :name,
  :source_file_location)
  SENSITIVE = []
  include Aws::Structure
end