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]

[src]

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

impl Debug for ListTagsResult
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ListTagsResult
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations