Class: AWS::Core::Http::Request::CaseInsensitiveHash

Inherits:
Hash
  • Object
show all
Defined in:
lib/aws/core/http/request.rb

Instance Method Summary collapse

Instance Method Details

#[](key) ⇒ Object



200
201
202
# File 'lib/aws/core/http/request.rb', line 200

def [] key
  super(key.to_s.downcase)
end

#[]=(key, value) ⇒ Object



196
197
198
# File 'lib/aws/core/http/request.rb', line 196

def []= key, value
  super(key.to_s.downcase, value)
end

#has_key?(key) ⇒ Boolean Also known as: key?, include?, member?

Returns:

  • (Boolean)


204
205
206
# File 'lib/aws/core/http/request.rb', line 204

def has_key?(key)
  super(key.to_s.downcase)
end