Class: Aws::Kinesis::Types::ListTagsForStreamOutput

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb

Overview

Represents the output for ListTagsForStream.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#has_more_tagsBoolean

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

Returns:

  • (Boolean)


1365
1366
1367
1368
1369
1370
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 1365

class ListTagsForStreamOutput < Struct.new(
  :tags,
  :has_more_tags)
  SENSITIVE = []
  include Aws::Structure
end

#tagsArray<Types::Tag>

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

Returns:



1365
1366
1367
1368
1369
1370
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 1365

class ListTagsForStreamOutput < Struct.new(
  :tags,
  :has_more_tags)
  SENSITIVE = []
  include Aws::Structure
end