lambda-live-debugger
Version:
Debug Lambda functions locally like it is running in the cloud
5 lines (4 loc) • 296 B
JavaScript
import { createPaginator } from "@smithy/core";
import { ListFunctionsCommand, } from "../commands/ListFunctionsCommand";
import { LambdaClient } from "../LambdaClient";
export const paginateListFunctions = createPaginator(LambdaClient, ListFunctionsCommand, "Marker", "NextMarker", "MaxItems");