Struct rusoto_kinesis::ListTagsForStreamOutput[][src]

pub struct ListTagsForStreamOutput {
    pub has_more_tags: bool,
    pub tags: Vec<Tag>,
}

Represents the output for ListTagsForStream.

Fields

If set to true, more tags are available. To request additional tags, set ExclusiveStartTagKey to the key of the last tag returned.

A list of tags associated with StreamName, starting with the first tag after ExclusiveStartTagKey and up to the specified Limit.

Trait Implementations

impl Default for ListTagsForStreamOutput
[src]

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

impl Debug for ListTagsForStreamOutput
[src]

Formats the value using the given formatter. Read more

impl Clone for ListTagsForStreamOutput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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