require 'simple_aws/api' require 'simple_aws/call_types/action_param' require 'simple_aws/signing/version2' module SimpleAWS ## # Amazon's SimpleDB # # http://docs.amazonwebservices.com/AmazonSimpleDB/latest/DeveloperGuide/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 SimpleDB < API endpoint "sdb" use_https true version "2009-04-15" include CallTypes::ActionParam include Signing::Version2 end end