Example usage for Java com.amazonaws.services.s3.model S3ObjectSummary fields, constructors, methods, implement or subclass
The text is from its open source code.
String | getBucketName() Gets the name of the Amazon S3 bucket in which this object is stored. |
String | getETag() Gets the hex encoded 128-bit MD5 hash of this object's contents as computed by Amazon S3. |
String | getKey() Gets the key under which this object is stored in Amazon S3. |
Date | getLastModified() Gets the date when, according to Amazon S3, this object was last modified. |
Owner | getOwner() Gets the owner of this object. |
long | getSize() Gets the size of this object in bytes. |
String | getStorageClass() Gets the storage class used by Amazon S3 for this object. |
void | setBucketName(String bucketName) Sets the name of the Amazon S3 bucket in which this object is stored. |
void | setETag(String eTag) Sets the hex encoded 128-bit MD5 hash of this object's contents as computed by Amazon S3. |
void | setKey(String key) Sets the key under which this object is stored in Amazon S3. |
void | setLastModified(Date lastModified) Sets the date, according to Amazon S3, this object was last modified. |
void | setOwner(Owner owner) Sets the owner of this object. |
void | setSize(long size) Sets the size of this object in bytes. |
void | setStorageClass(String storageClass) Sets the storage class used by Amazon S3 for this object. |