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

pub struct MultipartUploadListRequest {
    pub upload_id_marker: Option<UploadIdMarker>,
    pub bucket: BucketName,
    pub delimiter: Option<Delimiter>,
    pub prefix: Option<Prefix>,
    pub key_marker: Option<KeyMarker>,
    pub max_uploads: Option<MaxUploads>,
    pub encoding_type: Option<EncodingType>,
}

Fields

Together with key-marker, specifies the multipart upload after which listing should begin. If key-marker is not specified, the upload-id-marker parameter is ignored.

Character you use to group keys.

Lists in-progress uploads only for those keys that begin with the specified prefix.

Together with upload-id-marker, this parameter specifies the multipart upload after which listing should begin.

Sets the maximum number of multipart uploads, from 1 to 1,000, to return in the response body. 1,000 is the maximum number of uploads that can be returned in a response.

Trait Implementations

impl Debug for MultipartUploadListRequest
[src]

Formats the value using the given formatter.

impl Default for MultipartUploadListRequest
[src]

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

impl Decodable for MultipartUploadListRequest
[src]

Deserialize a value using a Decoder.

impl Encodable for MultipartUploadListRequest
[src]

Serialize a value using an Encoder.