@bitblit/ratchet-epsilon-common
Version:
Tiny adapter to simplify building API gateway Lambda APIS
7 lines (6 loc) • 306 B
TypeScript
import { GenericAwsEventHandlerFunction } from './generic-aws-event-handler-function.js';
import { S3Event } from 'aws-lambda';
export interface S3Config {
createHandlers: Map<string, GenericAwsEventHandlerFunction<S3Event>>;
removeHandlers: Map<string, GenericAwsEventHandlerFunction<S3Event>>;
}