List Tags For Delivery Stream
firehose_list_tags_for_delivery_stream | R Documentation |
Lists the tags for the specified Firehose stream¶
Description¶
Lists the tags for the specified Firehose stream. This operation has a limit of five transactions per second per account.
Usage¶
firehose_list_tags_for_delivery_stream(DeliveryStreamName,
ExclusiveStartTagKey, Limit)
Arguments¶
DeliveryStreamName |
[required] The name of the Firehose stream whose tags you want to list. |
ExclusiveStartTagKey |
The key to use as the starting point for the list of tags. If you
set this parameter, |
Limit |
The number of tags to return. If this number is less than the
total number of tags associated with the Firehose 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_delivery_stream(
DeliveryStreamName = "string",
ExclusiveStartTagKey = "string",
Limit = 123
)