Class: Aws::Transfer::Types::InputFileLocation

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

Overview

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

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#efs_file_locationTypes::EfsFileLocation

Specifies the details for the Amazon Elastic File System (Amazon EFS) file that’s being decrypted.



3071
3072
3073
3074
3075
3076
# File 'lib/aws-sdk-transfer/types.rb', line 3071

class InputFileLocation < Struct.new(
  :s3_file_location,
  :efs_file_location)
  SENSITIVE = []
  include Aws::Structure
end

#s3_file_locationTypes::S3InputFileLocation

Specifies the details for the Amazon S3 file that’s being copied or decrypted.



3071
3072
3073
3074
3075
3076
# File 'lib/aws-sdk-transfer/types.rb', line 3071

class InputFileLocation < Struct.new(
  :s3_file_location,
  :efs_file_location)
  SENSITIVE = []
  include Aws::Structure
end