UNPKG

serverless-aws-lambda

Version:

AWS Application Load Balancer and API Gateway - Lambda dev tool for Serverless. Allows Express synthax in handlers. Supports packaging, local invoking and offline ALB, APG, S3, SNS, SQS, DynamoDB Stream server mocking.

7 lines (6 loc) 196 B
export interface IS3Event { bucket: string; type: [string, string]; rules?: any[]; } export declare const parseS3: (event: any, provider: Record<string, any>) => IS3Event | undefined;