class AWS::SNS::TopicSubscriptionCollection


map(&:endpoint)
select { |s| s.protocol == :email }.
topic.subscriptions.
# messages sent to the topic
# get the e-mail addressess that receive plain-text
topic. For example:
Represents the collection of all subscriptions for a particular

def client_method

def client_method
  :list_subscriptions_by_topic
end

def initialize(topic, opts = {})

Other tags:
    Api: - private
def initialize(topic, opts = {})
  @topic = topic
  super
end

def request_options

def request_options
  { :topic_arn => topic.arn }
end