Class: Aws::Transfer::Types::DecryptStepDetails

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

Overview

Each step type has its own `StepDetails` structure.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#destination_file_locationTypes::InputFileLocation

Specifies the location for the file that's being processed.


1122
1123
1124
1125
1126
1127
1128
1129
1130
# File '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

#nameString

The name of the step, used as an identifier.

Returns:

  • (String)

1122
1123
1124
1125
1126
1127
1128
1129
1130
# File '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_existingString

A flag that indicates whether to overwrite an existing file of the same name. The default is `FALSE`.

Returns:

  • (String)

1122
1123
1124
1125
1126
1127
1128
1129
1130
# File '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_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 `$Aws::Transfer::Types::DecryptStepDetails.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::DecryptStepDetails.originaloriginal.file`.

Returns:

  • (String)

1122
1123
1124
1125
1126
1127
1128
1129
1130
# File '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

#typeString

The type of encryption used. Currently, this value must be `PGP`.

Returns:

  • (String)

1122
1123
1124
1125
1126
1127
1128
1129
1130
# File '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