Class: Aws::Transfer::Types::DecryptStepDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::Transfer::Types::DecryptStepDetails
- Defined in:
- gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb
Overview
Each step type has its own StepDetails
structure.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#destination_file_location ⇒ Types::InputFileLocation
Specifies the location for the file that's being processed.
-
#name ⇒ String
The name of the step, used as an identifier.
-
#overwrite_existing ⇒ String
A flag that indicates whether to overwrite an existing file of the same name.
-
#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.
-
#type ⇒ String
The type of encryption used.
Instance Attribute Details
#destination_file_location ⇒ Types::InputFileLocation
Specifies the location for the file that's being processed.
1122 1123 1124 1125 1126 1127 1128 1129 1130 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 1122 class DecryptStepDetails < Struct.new( :name, :type, :source_file_location, :overwrite_existing, :destination_file_location) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the step, used as an identifier.
1122 1123 1124 1125 1126 1127 1128 1129 1130 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 1122 class DecryptStepDetails < Struct.new( :name, :type, :source_file_location, :overwrite_existing, :destination_file_location) SENSITIVE = [] include Aws::Structure end |
#overwrite_existing ⇒ String
A flag that indicates whether to overwrite an existing file of the
same name. The default is FALSE
.
1122 1123 1124 1125 1126 1127 1128 1129 1130 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 1122 class DecryptStepDetails < Struct.new( :name, :type, :source_file_location, :overwrite_existing, :destination_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
$\{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\}
.
1122 1123 1124 1125 1126 1127 1128 1129 1130 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 1122 class DecryptStepDetails < Struct.new( :name, :type, :source_file_location, :overwrite_existing, :destination_file_location) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of encryption used. Currently, this value must be PGP
.
1122 1123 1124 1125 1126 1127 1128 1129 1130 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 1122 class DecryptStepDetails < Struct.new( :name, :type, :source_file_location, :overwrite_existing, :destination_file_location) SENSITIVE = [] include Aws::Structure end |