Sha256: e5daef2d9373d08fc9b72d20ec6ebfe6c0644063d8616118526e4a9e3560a9ab

Contents?: true

Size: 663 Bytes

Versions: 1

Compression:

Stored size: 663 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

1 entries across 1 versions & 1 rubygems

Version Path
simple_aws-1.0.0.pre1 lib/aws/import_export.rb