UNPKG

serverless-spy

Version:

CDK-based library for writing elegant integration tests on AWS serverless architecture and an additional web console to monitor events in real time.

17 lines (16 loc) 609 B
import { 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>;