# File lib/aws/core/page_result.rb, line 56
      def next_page
        if last_page?
          raise 'unable to get the next page, already at the last page'
        end
        collection.page(:per_page => per_page, :next_token => next_token)
      end