Struct rusoto_elasticache::RemoveTagsFromResourceMessage [] [src]

pub struct RemoveTagsFromResourceMessage {
    pub resource_name: String,
    pub tag_keys: Vec<String>,
}

Represents the input of a RemoveTagsFromResource operation.

Fields

The Amazon Resource Name (ARN) of the resource from which you want the tags removed, for example arn:aws:elasticache:us-west-2:0123456789:cluster:myCluster or arn:aws:elasticache:us-west-2:0123456789:snapshot:mySnapshot.

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

A list of TagKeys identifying the tags you want removed from the named resource.

Trait Implementations

impl Default for RemoveTagsFromResourceMessage
[src]

[src]

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

impl Debug for RemoveTagsFromResourceMessage
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for RemoveTagsFromResourceMessage
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations