Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 6.7 KB

File metadata and controls

15 lines (11 loc) · 6.7 KB

Paging

Represents pagination information for a collection of resources.

Fields

Field Type Required Description Example
previousToken Optional<String> The pagination token for the previous page, if one exists. You can use this token to navigate to the previous page of data. 1a2b3c4d5e6f7g8h9i10j11k
nextToken Optional<String> The pagination token for the next page. If this value is present in the response, there is another page of data you can fetch. 1a2b3c4d5e6f7g8h9i10j11k
currentToken Optional<String> The pagination token for the current page. 1a2b3c4d5e6f7g8h9i10j11k
limit Optional<Long> The number of records to return on the page. Not to exceed 200. 100
totalCount Optional<Long> The total number of records available. This field may return blank, even if there are more records. To confirm if there are more records, check the nextToken field. 2
links PaginationLinks ✔️ Represents pagination links for navigating between pages of data.