Class: Aws::Transfer::Types::TagStepDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::Transfer::Types::TagStepDetails
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-transfer/types.rb
Overview
Each step type has its own `StepDetails` structure.
The key/value pairs used to tag a file during the execution of a workflow 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.
-
#tags ⇒ Array<Types::S3Tag>
Array that contains from 1 to 10 key/value pairs.
Instance Attribute Details
#name ⇒ String
The name of the step, used as an identifier.
4716 4717 4718 4719 4720 4721 4722 |
# File 'lib/aws-sdk-transfer/types.rb', line 4716 class TagStepDetails < Struct.new( :name, :tags, :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.
-
To use the previous file as the input, enter `$Aws::Transfer::Types::TagStepDetails.previousprevious.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 `$Aws::Transfer::Types::TagStepDetails.originaloriginal.file`.
4716 4717 4718 4719 4720 4721 4722 |
# File 'lib/aws-sdk-transfer/types.rb', line 4716 class TagStepDetails < Struct.new( :name, :tags, :source_file_location) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::S3Tag>
Array that contains from 1 to 10 key/value pairs.
4716 4717 4718 4719 4720 4721 4722 |
# File 'lib/aws-sdk-transfer/types.rb', line 4716 class TagStepDetails < Struct.new( :name, :tags, :source_file_location) SENSITIVE = [] include Aws::Structure end |