Struct rusoto_resourcegroupstaggingapi::GetTagKeysOutput[][src]

pub struct GetTagKeysOutput {
    pub pagination_token: Option<String>,
    pub tag_keys: 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 keys in the AWS account.

Trait Implementations

impl Default for GetTagKeysOutput
[src]

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

impl Debug for GetTagKeysOutput
[src]

Formats the value using the given formatter. Read more

impl Clone for GetTagKeysOutput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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