Class: Aws::SNS::Types::ListSubscriptionsByTopicInput

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
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.

Instance Attribute Summary collapse

Instance Attribute Details

#next_tokenString

Token returned by the previous ‘ListSubscriptionsByTopic` request.

Returns:

  • (String)


806
807
808
809
810
# File 'lib/aws-sdk-sns/types.rb', line 806

class ListSubscriptionsByTopicInput < Struct.new(
  :topic_arn,
  :next_token)
  include Aws::Structure
end

#topic_arnString

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

Returns:

  • (String)


806
807
808
809
810
# File 'lib/aws-sdk-sns/types.rb', line 806

class ListSubscriptionsByTopicInput < Struct.new(
  :topic_arn,
  :next_token)
  include Aws::Structure
end