Struct rusoto_elasticache::AddTagsToResourceMessage[][src]

pub struct AddTagsToResourceMessage {
    pub resource_name: String,
    pub tags: Vec<Tag>,
}

Represents the input of an AddTagsToResource operation.

Fields

The Amazon Resource Name (ARN) of the resource to which the tags are to be added, for example arn:aws:elasticache:us-west-2:0123456789:cluster:myCluster or arn:aws:elasticache:us-west-2:0123456789:snapshot:mySnapshot. ElastiCache resources are cluster and snapshot.

For more information about ARNs, see Amazon Resource Names (ARNs) and AWS Service Namespaces.

A list of cost allocation tags to be added to this resource. A tag is a key-value pair. A tag key must be accompanied by a tag value.

Trait Implementations

impl Default for AddTagsToResourceMessage
[src]

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

impl Debug for AddTagsToResourceMessage
[src]

Formats the value using the given formatter. Read more

impl Clone for AddTagsToResourceMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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