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

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

Fields

Upload ID after which listing began.

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

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

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.

The key at or after which the listing began.

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

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.

Trait Implementations

impl Debug for MultipartUploadListOutput
[src]

Formats the value using the given formatter.

impl Default for MultipartUploadListOutput
[src]

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

impl Decodable for MultipartUploadListOutput
[src]

Deserialize a value using a Decoder.

impl Encodable for MultipartUploadListOutput
[src]

Serialize a value using an Encoder.