Table of Contents

Class ListPartsResponse

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

Returns information about the ListParts response and response metadata.

public class ListPartsResponse : AmazonWebServiceResponse
Inheritance
ListPartsResponse

Constructors

ListPartsResponse()

public ListPartsResponse()

Properties

AbortDate

Date when multipart upload will become eligible for abort operation by lifecycle.

public DateTime AbortDate { get; set; }

Property Value

DateTime

AbortRuleId

Id of the lifecycle rule that makes a multipart upload eligible for abort operation.

public string AbortRuleId { get; set; }

Property Value

string

BucketName

The name of the bucket to which the multipart upload was initiated.

public string BucketName { get; set; }

Property Value

string

Initiator

Identifies who initiated the multipart upload.

public Initiator Initiator { get; set; }

Property Value

Initiator

IsTruncated

Indicates whether the returned list of parts is truncated.

public bool IsTruncated { get; set; }

Property Value

bool

Key

Object key for which the multipart upload was initiated.

public string Key { get; set; }

Property Value

string

MaxParts

Maximum number of parts that were allowed in the response.

public int MaxParts { get; set; }

Property Value

int

NextPartNumberMarker

When a list is truncated, this element specifies the last part in the list, as well as the value to use for the part-number-marker request parameter in a subsequent request.

public int NextPartNumberMarker { get; set; }

Property Value

int

Owner

Gets and sets the Owner property.

public Owner Owner { get; set; }

Property Value

Owner

PartNumberMarker

Part number after which listing begins.

public int PartNumberMarker { get; set; }

Property Value

int

Parts

Gets and sets the Parts property.

PartDetails is a container for elements related to a particular part. A response can contain zero or more Part elements.

public List<PartDetail> Parts { get; set; }

Property Value

List<PartDetail>

RequestCharged

If present, indicates that the requester was successfully charged for the request.

public RequestCharged RequestCharged { get; set; }

Property Value

RequestCharged

StorageClass

The class of storage used to store the object.

public string StorageClass { get; set; }

Property Value

string

UploadId

Upload ID identifying the multipart upload whose parts are being listed.

public string UploadId { get; set; }

Property Value

string