1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/aws/requests/sns/subscribe.rb

34 lines
859 B
Ruby
Raw Normal View History

2011-02-03 20:29:42 -05:00
module Fog
module AWS
class SNS
class Real
require 'fog/aws/parsers/sns/subscribe'
2011-07-19 18:53:26 -04:00
# Create a subscription
#
# ==== Parameters
# * arn<~String> - Arn of topic to subscribe to
# * endpoint<~String> - Endpoint to notify
# * protocol<~String> - Protocol to notify endpoint with, in ['email', 'email-json', 'http', 'https', 'sqs']
#
# ==== See Also
# http://docs.amazonwebservices.com/sns/latest/api/API_Subscribe.html
#
def subscribe(arn, endpoint, protocol)
2011-02-03 20:29:42 -05:00
request({
2011-07-19 18:53:26 -04:00
'Action' => 'Subscribe',
'Endpoint' => endpoint,
'Protocol' => protocol,
'TopicArn' => arn.strip,
2011-07-19 18:53:26 -04:00
:parser => Fog::Parsers::AWS::SNS::Subscribe.new
})
2011-02-03 20:29:42 -05:00
end
end
end
end
end