Table of Contents

Class S3Object

Namespace
Amazon.S3.Model
Assembly
AWSSDK.S3.dll

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

string

ETag

Any ETag set on the object.

public string ETag { get; set; }

Property Value

string

Key

The key of the object.

public string Key { get; set; }

Property Value

string

LastModified

The date and time the object was last modified. The date retrieved from S3 is in ISO8601 format. A GMT formatted date is passed back to the user.

public DateTime LastModified { get; set; }

Property Value

DateTime

Owner

The owner of the object.

public Owner Owner { get; set; }

Property Value

Owner

Size

The size of the object.

public long Size { get; set; }

Property Value

long

StorageClass

The class of storage used to store the object.

public S3StorageClass StorageClass { get; set; }

Property Value

S3StorageClass