class AWS::Core::PageResult
def initialize collection, items, per_page, next_token
-
next_token
(String
) -- (nil) A token that can be passed to the -
per_page
(Integer
) -- The number of requested items for this -
items
(Array
) -- An array of result items that represent a -
collection
(Collection
) -- The collection that was used to
def initialize collection, items, per_page, next_token @collection = collection @per_page = per_page @next_token = next_token super(items) end