Table of Contents

Class S3ObjectVersion

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

Represents a version of an object in an S3 Bucket. An S3 object version is an S3 object that also has a version identifier, an indication of whether this is the latest version of the object and whether it's a DeleteMarker or not.

public class S3ObjectVersion : S3Object
Inheritance
S3ObjectVersion
Inherited Members

Constructors

S3ObjectVersion()

public S3ObjectVersion()

Properties

IsDeleteMarker

If true, the object is a delete marker for a deleted object.

public bool IsDeleteMarker { get; set; }

Property Value

bool

IsLatest

Specifies whether the object is (true) or is not (false) the latest version of an object.

public bool IsLatest { get; set; }

Property Value

bool

VersionId

Version ID of an object.

public string VersionId { get; set; }

Property Value

string