Struct rusoto_resourcegroupstaggingapi::TagResourcesInput[][src]

pub struct TagResourcesInput {
    pub resource_arn_list: Vec<String>,
    pub tags: HashMap<String, String>,
}

Fields

A list of ARNs. An ARN (Amazon Resource Name) uniquely identifies a resource. You can specify a minimum of 1 and a maximum of 20 ARNs (resources) to tag. An ARN can be set to a maximum of 1600 characters. For more information, see Amazon Resource Names (ARNs) and AWS Service Namespaces in the AWS General Reference.

The tags that you want to add to the specified resources. A tag consists of a key and a value that you define.

Trait Implementations

impl Default for TagResourcesInput
[src]

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

impl Debug for TagResourcesInput
[src]

Formats the value using the given formatter. Read more

impl Clone for TagResourcesInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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