UNPKG

lambda-live-debugger

Version:

Debug Lambda functions locally like it is running in the cloud

12 lines (11 loc) 473 B
import { createAggregatedClient } from "@smithy/smithy-client"; import { CognitoIdentityClient } from "./CognitoIdentityClient"; import { GetCredentialsForIdentityCommand } from "./commands/GetCredentialsForIdentityCommand"; import { GetIdCommand } from "./commands/GetIdCommand"; const commands = { GetCredentialsForIdentityCommand, GetIdCommand, }; export class CognitoIdentity extends CognitoIdentityClient { } createAggregatedClient(commands, CognitoIdentity);