Struct rusoto_resourcegroupstaggingapi::ResourceTagMapping[][src]

pub struct ResourceTagMapping {
    pub resource_arn: Option<String>,
    pub tags: Option<Vec<Tag>>,
}

A list of resource ARNs and the tags (keys and values) that are associated with each.

Fields

An array of resource ARN(s).

The tags that have been applied to one or more AWS resources.

Trait Implementations

impl Default for ResourceTagMapping
[src]

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

impl Debug for ResourceTagMapping
[src]

Formats the value using the given formatter. Read more

impl Clone for ResourceTagMapping
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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