Class: Aws::S3::Types::Object
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::Object
- Defined in:
- gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb
Overview
An object consists of data and its descriptive metadata.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#etag ⇒ String
The entity tag is a hash of the object.
-
#key ⇒ String
The name that you assign to an object.
-
#last_modified ⇒ Time
Creation date of the object.
-
#owner ⇒ Types::Owner
The owner of the object.
-
#size ⇒ Integer
Size in bytes of the object.
-
#storage_class ⇒ String
The class of storage used to store the object.
Instance Attribute Details
#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. The ETag may or may not be an MD5 digest of the object data. Whether or not it is depends on how the object was created and how it is encrypted as described below:
Objects created by the PUT Object, POST Object, or Copy operation, or through the AWS Management Console, and are encrypted by SSE-S3 or plaintext, have ETags that are an MD5 digest of their object data.
Objects created by the PUT Object, POST Object, or Copy operation, or through the AWS Management Console, and are encrypted by SSE-C or SSE-KMS, have ETags that are not an MD5 digest of their object data.
If an object is created by either the Multipart Upload or Part Copy operation, the ETag is not an MD5 digest, regardless of the method of encryption.
9464 9465 9466 9467 9468 9469 9470 9471 9472 9473 |
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 9464 class Object < Struct.new( :key, :last_modified, :etag, :size, :storage_class, :owner) SENSITIVE = [] include Aws::Structure end |
#key ⇒ String
The name that you assign to an object. You use the object key to retrieve the object.
9464 9465 9466 9467 9468 9469 9470 9471 9472 9473 |
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 9464 class Object < Struct.new( :key, :last_modified, :etag, :size, :storage_class, :owner) SENSITIVE = [] include Aws::Structure end |
#last_modified ⇒ Time
Creation date of the object.
9464 9465 9466 9467 9468 9469 9470 9471 9472 9473 |
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 9464 class Object < Struct.new( :key, :last_modified, :etag, :size, :storage_class, :owner) SENSITIVE = [] include Aws::Structure end |
#owner ⇒ Types::Owner
The owner of the object
9464 9465 9466 9467 9468 9469 9470 9471 9472 9473 |
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 9464 class Object < Struct.new( :key, :last_modified, :etag, :size, :storage_class, :owner) SENSITIVE = [] include Aws::Structure end |
#size ⇒ Integer
Size in bytes of the object
9464 9465 9466 9467 9468 9469 9470 9471 9472 9473 |
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 9464 class Object < Struct.new( :key, :last_modified, :etag, :size, :storage_class, :owner) SENSITIVE = [] include Aws::Structure end |
#storage_class ⇒ String
The class of storage used to store the object.
9464 9465 9466 9467 9468 9469 9470 9471 9472 9473 |
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 9464 class Object < Struct.new( :key, :last_modified, :etag, :size, :storage_class, :owner) SENSITIVE = [] include Aws::Structure end |