class Aws::Api::Customizer

def deep_merge(first_hash, other_hash)

def deep_merge(first_hash, other_hash)
  first_hash.merge(other_hash) do |key, old, new|
    Hash === old && Hash === new ? deep_merge(old, new) : new
  end
end