class Aws::Plugins::Retries::ClockSkew

def server_time(response)

Parameters:
  • response (Seahorse::Client::Http::Response:) --
def server_time(response)
  begin
    Time.parse(response.headers['date']).utc
  rescue
    nil
  end
end