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