Struct rusoto_glacier::CompleteVaultLockInput[][src]

pub struct CompleteVaultLockInput {
    pub account_id: String,
    pub lock_id: String,
    pub vault_name: String,
}

The input values for CompleteVaultLock.

Fields

The AccountId value is the AWS account ID. This value must match the AWS account ID associated with the credentials used to sign the request. 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 specify your account ID, do not include any hyphens ('-') in the ID.

The lockId value is the lock ID obtained from a InitiateVaultLock request.

The name of the vault.

Trait Implementations

impl Default for CompleteVaultLockInput
[src]

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

impl Debug for CompleteVaultLockInput
[src]

Formats the value using the given formatter. Read more

impl Clone for CompleteVaultLockInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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