Class: Aws::Transfer::Types::FileLocation
- Inherits:
-
Struct
- Object
- Struct
- Aws::Transfer::Types::FileLocation
- 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
-
#efs_file_location ⇒ Types::EfsFileLocation
Specifies the Amazon EFS identifier and the path for the file being used.
-
#s3_file_location ⇒ Types::S3FileLocation
Specifies the S3 details for the file being used, such as bucket, ETag, and so forth.
Instance Attribute Details
#efs_file_location ⇒ Types::EfsFileLocation
Specifies the Amazon EFS identifier and the path for the file being used.
3245 3246 3247 3248 3249 3250 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 3245 class FileLocation < Struct.new( :s3_file_location, :efs_file_location) SENSITIVE = [] include Aws::Structure end |
#s3_file_location ⇒ Types::S3FileLocation
Specifies the S3 details for the file being used, such as bucket, ETag, and so forth.
3245 3246 3247 3248 3249 3250 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 3245 class FileLocation < Struct.new( :s3_file_location, :efs_file_location) SENSITIVE = [] include Aws::Structure end |