Sha256: 65a7a87299e6606c5b6b12a83d076eb38c2235befdc657042f41ec03ed2d9d94
Contents?: true
Size: 698 Bytes
Versions: 1
Compression:
Stored size: 698 Bytes
Contents
require 'simple_aws/api' require 'simple_aws/call_types/action_param' require 'simple_aws/signing/version2' module SimpleAWS ## # Amazon's Simple Notification Service # # http://docs.amazonwebservices.com/sns/latest/api/Welcome.html # # All requests are POST and always through HTTPS. Use the third parameter to # #initialize if you need to talk to a region other than us-east-1. # # @see SimpleAWS::CallTypes::ActionParam Calling rules # @see SimpleAWS::Response Response handling ## class SNS < API endpoint "sns" use_https true version "2010-03-31" default_region "us-east-1" include CallTypes::ActionParam include Signing::Version2 end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
simple_aws-1.1.0 | lib/simple_aws/sns.rb |