Class: Aws::Kinesis::Types::ListTagsForStreamInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kinesis::Types::ListTagsForStreamInput
- Defined in:
- gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb
Overview
Represents the input for ListTagsForStream
.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#exclusive_start_tag_key ⇒ String
The key to use as the starting point for the list of tags.
-
#limit ⇒ Integer
The number of tags to return.
-
#stream_arn ⇒ String
The ARN of the stream.
-
#stream_name ⇒ String
The name of the stream.
Instance Attribute Details
#exclusive_start_tag_key ⇒ String
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
.
1305 1306 1307 1308 1309 1310 1311 1312 |
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 1305 class ListTagsForStreamInput < Struct.new( :stream_name, :exclusive_start_tag_key, :limit, :stream_arn) SENSITIVE = [] include Aws::Structure end |
#limit ⇒ Integer
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.
1305 1306 1307 1308 1309 1310 1311 1312 |
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 1305 class ListTagsForStreamInput < Struct.new( :stream_name, :exclusive_start_tag_key, :limit, :stream_arn) SENSITIVE = [] include Aws::Structure end |
#stream_arn ⇒ String
The ARN of the stream.
1305 1306 1307 1308 1309 1310 1311 1312 |
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 1305 class ListTagsForStreamInput < Struct.new( :stream_name, :exclusive_start_tag_key, :limit, :stream_arn) SENSITIVE = [] include Aws::Structure end |
#stream_name ⇒ String
The name of the stream.
1305 1306 1307 1308 1309 1310 1311 1312 |
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 1305 class ListTagsForStreamInput < Struct.new( :stream_name, :exclusive_start_tag_key, :limit, :stream_arn) SENSITIVE = [] include Aws::Structure end |