Struct rusoto_glacier::UploadArchiveInput[][src]

pub struct UploadArchiveInput {
    pub account_id: String,
    pub archive_description: Option<String>,
    pub body: Option<Vec<u8>>,
    pub checksum: Option<String>,
    pub vault_name: String,
}

Provides options to add an archive to a vault.

Fields

The AccountId value is the AWS account ID of the account that owns the vault. You can either specify an AWS account ID or optionally a single '-' (hyphen), in which case Amazon Glacier uses the AWS account ID associated with the credentials used to sign the request. If you use an account ID, do not include any hyphens ('-') in the ID.

The optional description of the archive you are uploading.

The data to upload.

The SHA256 tree hash of the data being uploaded.

The name of the vault.

Trait Implementations

impl Default for UploadArchiveInput
[src]

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

impl Debug for UploadArchiveInput
[src]

Formats the value using the given formatter. Read more

impl Clone for UploadArchiveInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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