Class: Aws::Transfer::Types::InputFileLocation
- Inherits:
-
Struct
- Object
- Struct
- Aws::Transfer::Types::InputFileLocation
- 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
-
#efs_file_location ⇒ Types::EfsFileLocation
Specifies the details for the Amazon Elastic File System (Amazon EFS) file that’s being decrypted.
-
#s3_file_location ⇒ Types::S3InputFileLocation
Specifies the details for the Amazon S3 file that’s being copied or decrypted.
Instance Attribute Details
#efs_file_location ⇒ Types::EfsFileLocation
Specifies the details for the Amazon Elastic File System (Amazon EFS) file that’s being decrypted.
3538 3539 3540 3541 3542 3543 |
# File 'lib/aws-sdk-transfer/types.rb', line 3538 class InputFileLocation < Struct.new( :s3_file_location, :efs_file_location) SENSITIVE = [] include Aws::Structure end |
#s3_file_location ⇒ Types::S3InputFileLocation
Specifies the details for the Amazon S3 file that’s being copied or decrypted.
3538 3539 3540 3541 3542 3543 |
# File 'lib/aws-sdk-transfer/types.rb', line 3538 class InputFileLocation < Struct.new( :s3_file_location, :efs_file_location) SENSITIVE = [] include Aws::Structure end |