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.
16 lines (15 loc) • 565 B
TypeScript
import type { IDestination } from "./index";
export interface IKinesisEvent {
StreamName: string;
enabled?: boolean;
batchSize?: number;
maximumRetryAttempts?: number;
startingPosition?: string;
startingPositionTimestamp?: number;
parallelizationFactor?: number;
functionResponseType?: "ReportBatchItemFailures";
consumer?: boolean | string;
tumblingWindowInSeconds?: number;
onFailure?: IDestination;
}
export declare const parseKinesis: (event: any, Outputs: any, resources: any) => Partial<IKinesisEvent> | undefined;