Struct rusoto_kms::ListResourceTagsResponse[][src]

pub struct ListResourceTagsResponse {
    pub next_marker: Option<String>,
    pub tags: Option<Vec<Tag>>,
    pub truncated: Option<bool>,
}

Fields

When Truncated is true, this element is present and contains the value to use for the Marker parameter in a subsequent request.

Do not assume or infer any information from this value.

A list of tags. Each tag consists of a tag key and a tag value.

A flag that indicates whether there are more items in the list. When this value is true, the list in this response is truncated. To get more items, pass the value of the NextMarker element in this response to the Marker parameter in a subsequent request.

Trait Implementations

impl Default for ListResourceTagsResponse
[src]

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

impl Debug for ListResourceTagsResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for ListResourceTagsResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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