Struct rusoto_glacier::ListPartsOutput[][src]

pub struct ListPartsOutput {
    pub archive_description: Option<String>,
    pub creation_date: Option<String>,
    pub marker: Option<String>,
    pub multipart_upload_id: Option<String>,
    pub part_size_in_bytes: Option<i64>,
    pub parts: Option<Vec<PartListElement>>,
    pub vault_arn: Option<String>,
}

Contains the Amazon Glacier response to your request.

Fields

The description of the archive that was specified in the Initiate Multipart Upload request.

The UTC time at which the multipart upload was initiated.

An opaque string that represents where to continue pagination of the results. You use the marker in a new List Parts request to obtain more jobs in the list. If there are no more parts, this value is null.

The ID of the upload to which the parts are associated.

The part size in bytes. This is the same value that you specified in the Initiate Multipart Upload request.

A list of the part sizes of the multipart upload. Each object in the array contains a RangeBytes and sha256-tree-hash name/value pair.

The Amazon Resource Name (ARN) of the vault to which the multipart upload was initiated.

Trait Implementations

impl Default for ListPartsOutput
[src]

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

impl Debug for ListPartsOutput
[src]

Formats the value using the given formatter. Read more

impl Clone for ListPartsOutput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ListPartsOutput
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations