Sha256: 3632a8b8c2402080ecefafb21f8edd08d00067017948f8affedbdc659ddc20ad
Contents?: true
Size: 664 Bytes
Versions: 3
Compression:
Stored size: 664 Bytes
Contents
require 'aws/api' require 'aws/call_types/action_param' require 'aws/signing/version2' module AWS ## # Amazon's Import / Export # # http://docs.amazonwebservices.com/AWSImportExport/latest/API/Welcome.html # # All requests are POST and always through HTTPS. # This API does not support region specifiers. # # @see AWS::CallTypes::ActionParam Calling rules # @see AWS::Response Response handling ## class ImportExport < API endpoint "importexport" use_https true version "2010-06-03" def initialize(key, secret) super(key, secret) end include CallTypes::ActionParam include Signing::Version2 end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
simple_aws-1.0.0 | lib/aws/import_export.rb |
simple_aws-1.0.0.pre3 | lib/aws/import_export.rb |
simple_aws-1.0.0.pre2 | lib/aws/import_export.rb |