Class: Aws::Transfer::Types::InputFileLocation
- Inherits:
-
Struct
- Object
- Struct
- Aws::Transfer::Types::InputFileLocation
- Defined in:
- gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb
Overview
Specifies the location for the file being copied. Only applicable for the Copy type of workflow steps.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#efs_file_location ⇒ Types::EfsFileLocation
Reserved for future use.
-
#s3_file_location ⇒ Types::S3InputFileLocation
Specifies the details for the S3 file being copied.
Instance Attribute Details
#efs_file_location ⇒ Types::EfsFileLocation
Reserved for future use.
3003 3004 3005 3006 3007 3008 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 3003 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 S3 file being copied.
3003 3004 3005 3006 3007 3008 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 3003 class InputFileLocation < Struct.new( :s3_file_location, :efs_file_location) SENSITIVE = [] include Aws::Structure end |