serverless-spy
Version:
CDK-based library for writing elegant integration tests on AWS serverless architecture and an additional web console to monitor events in real time.
17 lines (16 loc) • 432 B
TypeScript
import { Credentials, Profile } from "@aws-sdk/types";
import { 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>;