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

pub struct MultipartUploadListPartsRequest {
    pub request_payer: Option<RequestPayer>,
    pub bucket: BucketName,
    pub upload_id: MultipartUploadId,
    pub key: ObjectKey,
    pub max_parts: Option<MaxParts>,
    pub part_number_marker: Option<PartNumberMarker>,
}

Fields

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

Sets the maximum number of parts to return.

Specifies the part after which listing should begin. Only parts with higher part numbers will be listed.

Trait Implementations

impl Debug for MultipartUploadListPartsRequest
[src]

Formats the value using the given formatter.

impl Default for MultipartUploadListPartsRequest
[src]

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

impl Decodable for MultipartUploadListPartsRequest
[src]

Deserialize a value using a Decoder.

impl Encodable for MultipartUploadListPartsRequest
[src]

Serialize a value using an Encoder.