module Aws::PageableResponse::Extension

def next_page(params = {})

def next_page(params = {})
  if last_page?
    raise LastPageError.new(self)
  else
    next_response(params)
  end
end