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]

[src]

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

impl Debug for ListTagsForStreamOutput
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ListTagsForStreamOutput
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations