liveperson-functions-cli
Version:
LivePerson Functions CLI
20 lines (19 loc) • 497 B
TypeScript
interface ILogsConfig {
lambdaFunction: string;
inputFlags?: {
start?: string;
end?: string;
levels?: string[];
removeHeader?: boolean;
};
}
export declare class LogsController {
/**
* Gets the logs of the passed function
* @param {ILogsConfig} - lambda function and flags
* @returns {Promise<void>}
* @memberof LogsController
*/
static getLogs({ lambdaFunction, inputFlags, }: ILogsConfig): Promise<void>;
}
export {};