Struct rusoto_discovery::DescribeTagsResponse[][src]

pub struct DescribeTagsResponse {
    pub next_token: Option<String>,
    pub tags: Option<Vec<ConfigurationTag>>,
}

Fields

The call returns a token. Use this token to get the next set of results.

Depending on the input, this is a list of configuration items tagged with a specific tag, or a list of tags for a specific configuration item.

Trait Implementations

impl Default for DescribeTagsResponse
[src]

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

impl Debug for DescribeTagsResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeTagsResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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