[][src]Struct rusoto_s3::ListMultipartUploadsRequest

pub struct ListMultipartUploadsRequest {
    pub bucket: String,
    pub delimiter: Option<String>,
    pub encoding_type: Option<String>,
    pub key_marker: Option<String>,
    pub max_uploads: Option<i64>,
    pub prefix: Option<String>,
    pub upload_id_marker: Option<String>,
}

Fields

bucket: String

delimiter: Option<String>

Character you use to group keys.

encoding_type: Option<String>key_marker: Option<String>

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

max_uploads: Option<i64>

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.

prefix: Option<String>

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

upload_id_marker: Option<String>

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.

Trait Implementations

impl PartialEq<ListMultipartUploadsRequest> for ListMultipartUploadsRequest[src]

impl Default for ListMultipartUploadsRequest[src]

impl Clone for ListMultipartUploadsRequest[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for ListMultipartUploadsRequest[src]

Auto Trait Implementations

impl Send for ListMultipartUploadsRequest

impl Sync for ListMultipartUploadsRequest

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self