Class: Aws::SNS::Types::ListSubscriptionsByTopicInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::SNS::Types::ListSubscriptionsByTopicInput
- Defined in:
- gems/aws-sdk-sns/lib/aws-sdk-sns/types.rb
Overview
Note:
When making an API call, you may pass ListSubscriptionsByTopicInput data as a hash:
{
topic_arn: "topicARN", # required
next_token: "nextToken",
}
Input for ListSubscriptionsByTopic action.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
Token returned by the previous
ListSubscriptionsByTopic
request. -
#topic_arn ⇒ String
The ARN of the topic for which you wish to find subscriptions.
Instance Attribute Details
#next_token ⇒ String
Token returned by the previous ListSubscriptionsByTopic
request.
1441 1442 1443 1444 1445 1446 |
# File 'gems/aws-sdk-sns/lib/aws-sdk-sns/types.rb', line 1441 class ListSubscriptionsByTopicInput < Struct.new( :topic_arn, :next_token) SENSITIVE = [] include Aws::Structure end |
#topic_arn ⇒ String
The ARN of the topic for which you wish to find subscriptions.
1441 1442 1443 1444 1445 1446 |
# File 'gems/aws-sdk-sns/lib/aws-sdk-sns/types.rb', line 1441 class ListSubscriptionsByTopicInput < Struct.new( :topic_arn, :next_token) SENSITIVE = [] include Aws::Structure end |