Struct rusoto_resourcegroupstaggingapi::GetTagValuesOutput[][src]

pub struct GetTagValuesOutput {
    pub pagination_token: Option<String>,
    pub tag_values: Option<Vec<String>>,
}

Fields

A string that indicates that the response contains more data than can be returned in a single response. To receive additional data, specify this string for the PaginationToken value in a subsequent request.

A list of all tag values for the specified key in the AWS account.

Trait Implementations

impl Default for GetTagValuesOutput
[src]

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

impl Debug for GetTagValuesOutput
[src]

Formats the value using the given formatter. Read more

impl Clone for GetTagValuesOutput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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