Struct rusoto_glacier::GetVaultLockOutput[][src]

pub struct GetVaultLockOutput {
    pub creation_date: Option<String>,
    pub expiration_date: Option<String>,
    pub policy: Option<String>,
    pub state: Option<String>,
}

Contains the Amazon Glacier response to your request.

Fields

The UTC date and time at which the vault lock was put into the InProgress state.

The UTC date and time at which the lock ID expires. This value can be null if the vault lock is in a Locked state.

The vault lock policy as a JSON string, which uses "\" as an escape character.

The state of the vault lock. InProgress or Locked.

Trait Implementations

impl Default for GetVaultLockOutput
[src]

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

impl Debug for GetVaultLockOutput
[src]

Formats the value using the given formatter. Read more

impl Clone for GetVaultLockOutput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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