Struct rusoto_glacier::DescribeVaultOutput[][src]

pub struct DescribeVaultOutput {
    pub creation_date: Option<String>,
    pub last_inventory_date: Option<String>,
    pub number_of_archives: Option<i64>,
    pub size_in_bytes: Option<i64>,
    pub vault_arn: Option<String>,
    pub vault_name: Option<String>,
}

Contains the Amazon Glacier response to your request.

Fields

The Universal Coordinated Time (UTC) date when the vault was created. This value should be a string in the ISO 8601 date format, for example 2012-03-20T17:03:43.221Z.

The Universal Coordinated Time (UTC) date when Amazon Glacier completed the last vault inventory. This value should be a string in the ISO 8601 date format, for example 2012-03-20T17:03:43.221Z.

The number of archives in the vault as of the last inventory date. This field will return null if an inventory has not yet run on the vault, for example if you just created the vault.

Total size, in bytes, of the archives in the vault as of the last inventory date. This field will return null if an inventory has not yet run on the vault, for example if you just created the vault.

The Amazon Resource Name (ARN) of the vault.

The name of the vault.

Trait Implementations

impl Default for DescribeVaultOutput
[src]

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

impl Debug for DescribeVaultOutput
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeVaultOutput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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