Class S3Object
Represents an S3 Object. Contains all attributes that an S3 Object has. For more information about S3 Objects refer: http://docs.amazonwebservices.com/AmazonS3/latest/UsingObjects.html
public class S3Object
- Inheritance
-
S3Object
- Derived
- Inherited Members
Constructors
S3Object()
public S3Object()
Properties
BucketName
The name of the bucket containing this object.
public string BucketName { get; set; }
Property Value
ETag
Any ETag set on the object.
public string ETag { get; set; }
Property Value
Key
The key of the object.
public string Key { get; set; }
Property Value
LastModified
The date and time the object was last modified.
public DateTime LastModified { get; set; }
Property Value
Owner
The owner of the object.
public Owner Owner { get; set; }
Property Value
Size
The size of the object.
public long Size { get; set; }
Property Value
StorageClass
The class of storage used to store the object.
public S3StorageClass StorageClass { get; set; }