Sha256: 70c0741a87597fabc65e2fe7c2a8d37063fdf2fb7a18e893a4ea760a8902360a
Contents?: true
Size: 853 Bytes
Versions: 20
Compression:
Stored size: 853 Bytes
Contents
module Fog module AWS class SNS class Real require 'fog/aws/parsers/sns/subscribe' # 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) request({ 'Action' => 'Subscribe', 'Endpoint' => endpoint, 'Protocol' => protocol, 'TopicArn' => arn, :parser => Fog::Parsers::AWS::SNS::Subscribe.new }) end end end end end
Version data entries
20 entries across 20 versions & 4 rubygems