List Tags For Stream
| kinesis_list_tags_for_stream | R Documentation |
Lists the tags for the specified Kinesis data stream¶
Description¶
Lists the tags for the specified Kinesis data stream. This operation has a limit of five transactions per second per account.
When invoking this API, you must use either the StreamARN or the
StreamName parameter, or both. It is recommended that you use the
StreamARN input parameter when you invoke this API.
Usage¶
kinesis_list_tags_for_stream(StreamName, ExclusiveStartTagKey, Limit,
StreamARN)
Arguments¶
StreamName |
The name of the stream. |
ExclusiveStartTagKey |
The key to use as the starting point for the list of tags. If
this parameter is set, |
Limit |
The number of tags to return. If this number is less than the
total number of tags associated with the stream,
|
StreamARN |
The ARN of the stream. |
Value¶
A list with the following syntax:
list(
Tags = list(
list(
Key = "string",
Value = "string"
)
),
HasMoreTags = TRUE|FALSE
)
Request syntax¶
svc$list_tags_for_stream(
StreamName = "string",
ExclusiveStartTagKey = "string",
Limit = 123,
StreamARN = "string"
)