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.
10 lines (9 loc) • 387 B
TypeScript
import { S3LocalService } from "./localAction";
import type { IncomingHttpHeaders, IncomingMessage, ServerResponse } from "http";
export declare class DeleteObjectAction extends S3LocalService {
bucket: string;
key: string;
version: string | null;
constructor(url: URL, headers: IncomingHttpHeaders);
exec(res: ServerResponse, req: IncomingMessage): Promise<void>;
}