Struct rusoto_secretsmanager::TagResourceRequest[][src]

pub struct TagResourceRequest {
    pub secret_id: String,
    pub tags: Vec<Tag>,
}

Fields

The identifier for the secret that you want to attach tags to. You can specify either the Amazon Resource Name (ARN) or the friendly name of the secret.

The tags to attach to the secret. Each element in the list consists of a Key and a Value.

This parameter to the API requires a JSON text string argument. For information on how to format a JSON parameter for the various command line tool environments, see Using JSON for Parameters in the AWS CLI User Guide. For the AWS CLI, you can also use the syntax: --Tags Key="Key1",Value="Value1",Key="Key2",Value="Value2"[,…]

Trait Implementations

impl Default for TagResourceRequest
[src]

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

impl Debug for TagResourceRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for TagResourceRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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