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.

17 lines (16 loc) 569 B
import type { IDestination } from "./index"; export interface IDdbEvent { TableName: string; StreamEnabled: boolean; StreamViewType?: string; batchSize?: number; batchWindow?: number; tumblingWindowInSeconds?: number; maximumRecordAgeInSeconds?: number; maximumRetryAttempts?: number; bisectBatchOnFunctionError?: boolean; functionResponseType?: string; filterPatterns?: any; onFailure?: IDestination; } export declare const parseDdbStreamDefinitions: (Outputs: any, resources: any, event: any) => IDdbEvent | undefined;