Struct aws_sdk_rust::aws::s3::object::MultipartUploadListPartsOutput [] [src]

pub struct MultipartUploadListPartsOutput {
    pub initiator: Initiator,
    pub bucket: BucketName,
    pub next_part_number_marker: NextPartNumberMarker,
    pub parts: Parts,
    pub upload_id: MultipartUploadId,
    pub storage_class: StorageClass,
    pub key: ObjectKey,
    pub request_charged: RequestCharged,
    pub owner: Owner,
    pub max_parts: MaxParts,
    pub is_truncated: IsTruncated,
    pub part_number_marker: PartNumberMarker,
}

Fields

Identifies who initiated the multipart upload.

Name of the bucket to which the multipart upload was initiated.

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.

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

The class of storage used to store the object.

Object key for which the multipart upload was initiated.

Maximum number of parts that were allowed in the response.

Indicates whether the returned list of parts is truncated.

Part number after which listing begins.

Trait Implementations

impl Debug for MultipartUploadListPartsOutput
[src]

Formats the value using the given formatter.

impl Default for MultipartUploadListPartsOutput
[src]

Returns the "default value" for a type. Read more

impl Decodable for MultipartUploadListPartsOutput
[src]

Deserialize a value using a Decoder.

impl Encodable for MultipartUploadListPartsOutput
[src]

Serialize a value using an Encoder.