Table of Contents

Class ListSubscriptionsByTopicRequest

Namespace
Amazon.SimpleNotificationService.Model
Assembly
AWSSDK.SimpleNotificationService.dll

Container for the parameters to the ListSubscriptionsByTopic operation. Returns a list of the subscriptions to a specific topic. 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
ListSubscriptionsByTopic
call to get further results.

This action is throttled at 30 transactions per second (TPS).

public class ListSubscriptionsByTopicRequest : AmazonSimpleNotificationServiceRequest
Inheritance
ListSubscriptionsByTopicRequest

Constructors

ListSubscriptionsByTopicRequest()

Empty constructor used to set properties independently even when a simple constructor is available

public ListSubscriptionsByTopicRequest()

ListSubscriptionsByTopicRequest(string)

Instantiates ListSubscriptionsByTopicRequest with the parameterized properties

public ListSubscriptionsByTopicRequest(string topicArn)

Parameters

topicArn string

The ARN of the topic for which you wish to find subscriptions.

ListSubscriptionsByTopicRequest(string, string)

Instantiates ListSubscriptionsByTopicRequest with the parameterized properties

public ListSubscriptionsByTopicRequest(string topicArn, string nextToken)

Parameters

topicArn string

The ARN of the topic for which you wish to find subscriptions.

nextToken string

Token returned by the previous

ListSubscriptionsByTopic
request.

Properties

NextToken

Gets and sets the property NextToken.

Token returned by the previous

ListSubscriptionsByTopic
request.
public string NextToken { get; set; }

Property Value

string

TopicArn

Gets and sets the property TopicArn.

The ARN of the topic for which you wish to find subscriptions.

public string TopicArn { get; set; }

Property Value

string