module Aws::PageableResponse

def next_page(params = {})

Returns:
  • (Seahorse::Client::Response) -
def next_page(params = {})
  if last_page?
    raise LastPageError.new(self)
  else
    next_response(params)
  end
end