Struct rusoto_s3::ListPartsOutput [] [src]

pub struct ListPartsOutput {
    pub abort_date: Option<String>,
    pub abort_rule_id: Option<String>,
    pub bucket: Option<String>,
    pub initiator: Option<Initiator>,
    pub is_truncated: Option<bool>,
    pub key: Option<String>,
    pub max_parts: Option<i64>,
    pub next_part_number_marker: Option<i64>,
    pub owner: Option<Owner>,
    pub part_number_marker: Option<i64>,
    pub parts: Option<Vec<Part>>,
    pub request_charged: Option<String>,
    pub storage_class: Option<String>,
    pub upload_id: Option<String>,
}

Fields

Date when multipart upload will become eligible for abort operation by lifecycle.

Id of the lifecycle rule that makes a multipart upload eligible for abort operation.

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

Identifies who initiated the multipart upload.

Indicates whether the returned list of parts is truncated.

Object key for which the multipart upload was initiated.

Maximum number of parts that were allowed in the response.

When a list is truncated, this element specifies the last part in the list, as well as the value to use for the part-number-marker request parameter in a subsequent request.

Part number after which listing begins.

The class of storage used to store the object.

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

Trait Implementations

impl Default for ListPartsOutput
[src]

[src]

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

impl Debug for ListPartsOutput
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ListPartsOutput
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations