nextToken
, you can retrieve a page of objects occurring immediately after the last object from the latest list.nextToken
, you will receive the first page of this stream.
The result contains data
which is a list of requested entity objects and nextToken
nextToken
. If this is a last page, nextToken
will be null
.
nextToken
. This means, you will make one extra API call to receive an empty list with a nextToken
as null
to ascertain that you have read all of the results.pageSize
. For example, to get only 10 results per page:
nextToken
obtained from the previous response:
pageSize
and other parameters passed to fetch the first page are not required to be passed in consecutive requests as this information is available within the nextToken
and will be conidered when returning next pages.