Class: Aws::Transfer::Types::FileLocation

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

Overview

Specifies the Amazon S3 or EFS file details to be used in the step.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#efs_file_locationTypes::EfsFileLocation

Specifies the Amazon EFS identifier and the path for the file being used.



3202
3203
3204
3205
3206
3207
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 3202

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

#s3_file_locationTypes::S3FileLocation

Specifies the S3 details for the file being used, such as bucket, ETag, and so forth.



3202
3203
3204
3205
3206
3207
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 3202

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