Struct rusoto_s3::ListMultipartUploadsOutput [] [src]

pub struct ListMultipartUploadsOutput {
    pub bucket: Option<BucketName>,
    pub common_prefixes: Option<CommonPrefixList>,
    pub delimiter: Option<Delimiter>,
    pub encoding_type: Option<EncodingType>,
    pub is_truncated: Option<IsTruncated>,
    pub key_marker: Option<KeyMarker>,
    pub max_uploads: Option<MaxUploads>,
    pub next_key_marker: Option<NextKeyMarker>,
    pub next_upload_id_marker: Option<NextUploadIdMarker>,
    pub prefix: Option<Prefix>,
    pub upload_id_marker: Option<UploadIdMarker>,
    pub uploads: Option<MultipartUploadList>,
}

Fields

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

Encoding type used by Amazon S3 to encode object keys in the response.

Indicates whether the returned list of multipart uploads is truncated. A value of true indicates that the list was truncated. The list can be truncated if the number of multipart uploads exceeds the limit allowed or specified by max uploads.

The key at or after which the listing began.

Maximum number of multipart uploads that could have been included in the response.

When a list is truncated, this element specifies the value that should be used for the key-marker request parameter in a subsequent request.

When a list is truncated, this element specifies the value that should be used for the upload-id-marker request parameter in a subsequent request.

When a prefix is provided in the request, this field contains the specified prefix. The result contains only keys starting with the specified prefix.

Upload ID after which listing began.

Trait Implementations

impl Default for ListMultipartUploadsOutput
[src]

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

impl Clone for ListMultipartUploadsOutput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ListMultipartUploadsOutput
[src]

Formats the value using the given formatter.