You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::Kinesis::Types::ListTagsForStreamInput

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing ListTagsForStreamInput as input to an Aws::Client method, you can use a vanilla Hash:

{
  stream_name: "StreamName", # required
  exclusive_start_tag_key: "TagKey",
  limit: 1,
}

Represents the input for ListTagsForStream.

Instance Attribute Summary collapse

Instance Attribute Details

#exclusive_start_tag_keyString

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.

Returns:

  • (String)

    The key to use as the starting point for the list of tags.

#limitInteger

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.

Returns:

  • (Integer)

    The number of tags to return.

#stream_nameString

The name of the stream.

Returns:

  • (String)

    The name of the stream.