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
Note:
When making an API call, you may pass InputFileLocation data as a hash:
{
s3_file_location: {
bucket: "S3Bucket",
key: "S3Key",
},
efs_file_location: {
file_system_id: "EfsFileSystemId",
path: "EfsPath",
},
}
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.
2378 2379 2380 2381 2382 2383 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 2378 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.
2378 2379 2380 2381 2382 2383 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 2378 class InputFileLocation < Struct.new( :s3_file_location, :efs_file_location) SENSITIVE = [] include Aws::Structure end |