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.
11 lines (10 loc) • 322 B
TypeScript
export interface ISqs {
name: string;
arn?: string;
batchSize?: number;
maximumBatchingWindow?: number;
filterPatterns?: any;
enabled?: boolean;
functionResponseType?: ["ReportBatchItemFailures"];
}
export declare const parseSqs: (Outputs: any, resources: any, event: any) => ISqs | undefined;