Struct rusoto_glacier::RemoveTagsFromVaultInput[][src]

pub struct RemoveTagsFromVaultInput {
    pub tag_keys: Option<Vec<String>>,
    pub account_id: String,
    pub vault_name: String,
}

The input value for RemoveTagsFromVaultInput.

Fields

A list of tag keys. Each corresponding tag is removed from the vault.

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 name of the vault.

Trait Implementations

impl Default for RemoveTagsFromVaultInput
[src]

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

impl Debug for RemoveTagsFromVaultInput
[src]

Formats the value using the given formatter. Read more

impl Clone for RemoveTagsFromVaultInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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