Contains tokens to fetch from a certain page.

Pagination

interface Pagination {
    nextToken?: string;
}

Properties

Properties

nextToken?: string

When present, pass this string token in the next request to return the next response page.

Pagination