cdk-amazon-chime-resources
Version:

26 lines (25 loc) • 984 B
JavaScript
import { GetOpsSummaryCommand, } from "../commands/GetOpsSummaryCommand";
import { SSMClient } from "../SSMClient";
const makePagedClientRequest = async (client, input, ...args) => {
return await client.send(new GetOpsSummaryCommand(input), ...args);
};
export async function* paginateGetOpsSummary(config, input, ...additionalArguments) {
let token = config.startingToken || undefined;
let hasNext = true;
let page;
while (hasNext) {
input.NextToken = token;
input["MaxResults"] = config.pageSize;
if (config.client instanceof SSMClient) {
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
}
else {
throw new Error("Invalid client, expected SSM | SSMClient");
}
yield page;
const prevToken = token;
token = page.NextToken;
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
}
return undefined;
}