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.

14 lines (13 loc) 439 B
export interface IDocumentDbEvent { cluster: string; smk: string; db: string; auth?: "BASIC_AUTH"; batchSize?: number; batchWindow?: number; collection?: string; document?: "Default" | "UpdateLookup"; enabled?: boolean; startingPosition?: "LATEST" | "TRIM_HORIZON" | "AT_TIMESTAMP"; } export declare const parseDocumentDb: (Outputs: any, resources: any, event: any) => IDocumentDbEvent | undefined;