custom-resource-helper
Version:
Helper for cloudformation custom resources
8 lines (7 loc) • 306 B
TypeScript
import * as winston from 'winston';
import { CloudFormationCustomResourceEvent, Context } from 'aws-lambda';
export declare type Logger = winston.Logger;
export interface LogFactory {
(event: CloudFormationCustomResourceEvent, context?: Context): Logger;
}
export declare const logFactory: LogFactory;