Represents pagination information for a collection of resources.
| Field | Type | Required | Description | Example |
|---|---|---|---|---|
PreviousToken |
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 |
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 |
string | ➖ | The pagination token for the current page. | 1a2b3c4d5e6f7g8h9i10j11k |
Limit |
long | ➖ | The number of records to return on the page. Not to exceed 200. | 100 |
TotalCount |
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 |
PaginationLinksJson | ✔️ | Represents pagination links for navigating between pages of data. |