Struct rusoto_kinesis::ListTagsForStreamInput [] [src]

pub struct ListTagsForStreamInput {
    pub exclusive_start_tag_key: Option<String>,
    pub limit: Option<i64>,
    pub stream_name: String,
}

Represents the input for ListTagsForStream.

Fields

The key to use as the starting point for the list of tags. If this parameter is set, ListTagsForStream gets all tags that occur after ExclusiveStartTagKey.

The number of tags to return. If this number is less than the total number of tags associated with the stream, HasMoreTags is set to true. To list additional tags, set ExclusiveStartTagKey to the last key in the response.

The name of the stream.

Trait Implementations

impl Default for ListTagsForStreamInput
[src]

[src]

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

impl Debug for ListTagsForStreamInput
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ListTagsForStreamInput
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations