Class: Aws::Transfer::Types::S3FileLocation
- Inherits:
-
Struct
- Object
- Struct
- Aws::Transfer::Types::S3FileLocation
- Defined in:
- gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb
Overview
Specifies the details for the file location for the file that's being used in the workflow. Only applicable if you are using S3 storage.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bucket ⇒ String
Specifies the S3 bucket that contains the file being used.
-
#etag ⇒ String
The entity tag is a hash of the object.
-
#key ⇒ String
The name assigned to the file when it was created in Amazon S3.
-
#version_id ⇒ String
Specifies the file version.
Instance Attribute Details
#bucket ⇒ String
Specifies the S3 bucket that contains the file being used.
4359 4360 4361 4362 4363 4364 4365 4366 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 4359 class S3FileLocation < Struct.new( :bucket, :key, :version_id, :etag) SENSITIVE = [] include Aws::Structure end |
#etag ⇒ String
The entity tag is a hash of the object. The ETag reflects changes only to the contents of an object, not its metadata.
4359 4360 4361 4362 4363 4364 4365 4366 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 4359 class S3FileLocation < Struct.new( :bucket, :key, :version_id, :etag) SENSITIVE = [] include Aws::Structure end |
#key ⇒ String
The name assigned to the file when it was created in Amazon S3. You use the object key to retrieve the object.
4359 4360 4361 4362 4363 4364 4365 4366 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 4359 class S3FileLocation < Struct.new( :bucket, :key, :version_id, :etag) SENSITIVE = [] include Aws::Structure end |
#version_id ⇒ String
Specifies the file version.
4359 4360 4361 4362 4363 4364 4365 4366 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 4359 class S3FileLocation < Struct.new( :bucket, :key, :version_id, :etag) SENSITIVE = [] include Aws::Structure end |