module Aws::Json

def load_file(path)

def load_file(path)
  self.load(File.open(path, 'r', encoding: 'UTF-8') { |f| f.read })
end