We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 683beb4 commit 300fed9Copy full SHA for 300fed9
packages/types/src/pagination.ts
@@ -13,4 +13,12 @@ export interface PaginationConfiguration {
13
client: Client<any, any, any>;
14
pageSize?: number;
15
startingToken?: any;
16
+ /**
17
+ * For some APIs, such as CloudWatchLogs events, the next page token will always
18
+ * be present.
19
+ *
20
+ * When true, this config field will have the paginator stop when the token doesn't change
21
+ * instead of when it is not present.
22
+ */
23
+ stopOnSameToken?: boolean;
24
}
0 commit comments