lambda-live-debugger
Version:
Debug Lambda functions locally like it is running in the cloud
17 lines (16 loc) • 442 B
TypeScript
import type { Credentials, Profile } from "@aws-sdk/types";
import type { FromIniInit } from "./fromIni";
/**
* @internal
*/
export interface ProcessProfile extends Profile {
credential_process: string;
}
/**
* @internal
*/
export declare const isProcessProfile: (arg: any) => arg is ProcessProfile;
/**
* @internal
*/
export declare const resolveProcessCredentials: (options: FromIniInit, profile: string) => Promise<Credentials>;