Struct rusoto_opsworks::ListTagsResult[][src]

pub struct ListTagsResult {
    pub next_token: Option<String>,
    pub tags: Option<HashMap<String, String>>,
}

Contains the response to a ListTags request.

Fields

If a paginated request does not return all of the remaining results, this parameter is set to a token that you can assign to the request object's NextToken parameter to get the next set of results. If the previous paginated request returned all of the remaining results, this parameter is set to null.

A set of key-value pairs that contain tag keys and tag values that are attached to a stack or layer.

Trait Implementations

impl Default for ListTagsResult
[src]

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

impl Debug for ListTagsResult
[src]

Formats the value using the given formatter. Read more

impl Clone for ListTagsResult
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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