Struct rusoto_glacier::UploadListElement[][src]

pub struct UploadListElement {
    pub archive_description: Option<String>,
    pub creation_date: Option<String>,
    pub multipart_upload_id: Option<String>,
    pub part_size_in_bytes: Option<i64>,
    pub vault_arn: Option<String>,
}

A list of in-progress multipart uploads for a vault.

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.

The ID of a multipart upload.

The part size, in bytes, specified in the Initiate Multipart Upload request. This is the size of all the parts in the upload except the last part, which may be smaller than this size.

The Amazon Resource Name (ARN) of the vault that contains the archive.

Trait Implementations

impl Default for UploadListElement
[src]

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

impl Debug for UploadListElement
[src]

Formats the value using the given formatter. Read more

impl Clone for UploadListElement
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for UploadListElement
[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