Struct rusoto_storagegateway::RemoveTagsFromResourceInput[][src]

pub struct RemoveTagsFromResourceInput {
    pub resource_arn: String,
    pub tag_keys: Vec<String>,
}

RemoveTagsFromResourceInput

Fields

The Amazon Resource Name (ARN) of the resource you want to remove the tags from.

The keys of the tags you want to remove from the specified resource. A tag is composed of a key/value pair.

Trait Implementations

impl Default for RemoveTagsFromResourceInput
[src]

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

impl Debug for RemoveTagsFromResourceInput
[src]

Formats the value using the given formatter. Read more

impl Clone for RemoveTagsFromResourceInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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