Struct rusoto_s3::ListPartsRequest [] [src]

pub struct ListPartsRequest {
    pub bucket: String,
    pub key: String,
    pub max_parts: Option<i64>,
    pub part_number_marker: Option<i64>,
    pub request_payer: Option<String>,
    pub upload_id: String,
}

Fields

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.

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

Trait Implementations

impl Default for ListPartsRequest
[src]

[src]

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

impl Debug for ListPartsRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ListPartsRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations