Class AWS::Core::PageResult
In: lib/aws/core/page_result.rb
Parent: Array

Methods

last_page?   more?   new   next_page  

Attributes

collection  [R]  @return [Collection] Returns the collection that was used to
  populated this page of results.
next_token  [R]  @return [String] An opaque token that can be passed the page method
  of the collection that returned this page of results.  This next
  token behaves as a pseudo offset.  If +next_token+ is +nil+ then
  there are no more results for the collection.
per_page  [R]  @return [Integer] Returns the maximum number of results per page.
  The final page in a collection may return fewer than +:per_page+
  items (e.g. +:per_page+ is 10 and there are only 7 items).

Public Class methods

@param [Collection] collection The collection that was used to

  request this page of results.  The collection should respond to
  #page and accept a :next_token option.

@param [Array] items An array of result items that represent a

  page of results.

@param [Integer] per_page The number of requested items for this

  page of results.  If the count of items is smaller than +per_page+
  then this is the last page of results.

@param [String] next_token (nil) A token that can be passed to the

Public Instance methods

@return [Boolean] Returns true if this is the last page of results.

@return [Boolean] Returns true if there are more pages of results.

[Validate]