Sha256: 7e0e4c2d6928b158ea321c1f47dd012952d4c7ad8de379997f291358fc216905

Contents?: true

Size: 703 Bytes

Versions: 5

Compression:

Stored size: 703 Bytes

Contents

require 'simple_aws/api'
require 'simple_aws/call_types/action_param'
require 'simple_aws/signing/version2'

module SimpleAWS

  ##
  # 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 SimpleAWS::CallTypes::ActionParam Calling rules
  # @see SimpleAWS::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

5 entries across 5 versions & 1 rubygems

Version Path
simple_aws-1.2.3 lib/simple_aws/import_export.rb
simple_aws-1.2.2 lib/simple_aws/import_export.rb
simple_aws-1.2.1 lib/simple_aws/import_export.rb
simple_aws-1.2.0 lib/simple_aws/import_export.rb
simple_aws-1.1.0 lib/simple_aws/import_export.rb