UNPKG

lambda-live-debugger

Version:

Debug Lambda functions locally like it is running in the cloud

17 lines (16 loc) 614 B
import type { FinalizeRequestHandlerOptions, FinalizeRequestMiddleware, Pluggable } from "@smithy/types"; /** * @internal * * Log a warning if the input to PutObject is detected to be a Stream of unknown ContentLength and * recommend the usage of the @aws-sdk/lib-storage Upload class. */ export declare function checkContentLengthHeader(): FinalizeRequestMiddleware<any, any>; /** * @internal */ export declare const checkContentLengthHeaderMiddlewareOptions: FinalizeRequestHandlerOptions; /** * @internal */ export declare const getCheckContentLengthHeaderPlugin: (unused: any) => Pluggable<any, any>;