# File lib/fog/aws/dynamodb.rb, line 77
        def initialize(options={})
          @use_iam_profile = options[:use_iam_profile]
          #TODO check dynamodb stuff

          setup_credentials(options)
          
          @connection_options     = options[:connection_options] || {}
          
          options[:region] ||= 'us-east-1'
          @host = options[:host] || "dynamodb.#{options[:region]}.amazonaws.com"
          @path       = options[:path]        || '/'
          @persistent = options[:persistent]  || false
          @port       = options[:port]        || '80' #443
          @scheme     = options[:scheme]      || 'http' #'https'
          @connection = Fog::Connection.new("#{@scheme}://#{@host}:#{@port}#{@path}", @persistent, @connection_options)
        end