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.
13 lines (12 loc) • 391 B
TypeScript
import type { ILambda } from "../../defineConfig";
interface IEventInfo {
bucket: string;
eTag: string;
size: number;
key: string;
requestCmd: string;
sourceIPAddress: string;
requestId: string;
}
export declare const triggerEvent: (lambdas: ILambda[], { bucket, eTag, size, key, requestCmd, sourceIPAddress, requestId }: IEventInfo) => Promise<void>;
export {};