class Aws::EndpointCache

def update(key, ctx)

Parameters:
  • ctx (RequestContext) --
  • key (String) --
def update(key, ctx)
  resp = _request_endpoint(ctx)
  if resp && resp.endpoints
    resp.endpoints.each { |e| self[key] = e }
  end
end