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.
18 lines (17 loc) • 565 B
TypeScript
import { S3LocalService } from "./localAction";
import type { IncomingHttpHeaders, ServerResponse } from "http";
export declare class HeadObjectAction extends S3LocalService {
filePath: string;
bucketPath: string;
bucket: string;
key: string;
versionId: string | null;
partNumber: number | null;
range?: [number, number];
ifMatch?: string;
ifNoneMatch?: string;
ifModifiedSince?: number;
ifUnmodifiedSince?: number;
constructor(url: URL, headers: IncomingHttpHeaders);
exec(res: ServerResponse): Promise<void>;
}