List Topics
sns_list_topics | R Documentation |
Returns a list of the requester's topics¶
Description¶
Returns a list of the requester's topics. Each call returns a limited
list of topics, up to 100. If there are more topics, a NextToken
is
also returned. Use the NextToken
parameter in a new list_topics
call
to get further results.
This action is throttled at 30 transactions per second (TPS).
Usage¶
sns_list_topics(NextToken)
Arguments¶
NextToken |
Token returned by the previous |
Value¶
A list with the following syntax:
list(
Topics = list(
list(
TopicArn = "string"
)
),
NextToken = "string"
)
Request syntax¶
svc$list_topics(
NextToken = "string"
)