UNPKG

lambda-live-debugger

Version:

Debug Lambda functions locally like it is running in the cloud

20 lines (19 loc) 742 B
import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; import { commonParams } from "../endpoint/EndpointParameters"; import { WriteGetObjectResponse } from "../schemas/schemas_0"; export { $Command }; export class WriteGetObjectResponseCommand extends $Command .classBuilder() .ep({ ...commonParams, UseObjectLambdaEndpoint: { type: "staticContextParams", value: true }, }) .m(function (Command, cs, config, o) { return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())]; }) .s("AmazonS3", "WriteGetObjectResponse", {}) .n("S3Client", "WriteGetObjectResponseCommand") .sc(WriteGetObjectResponse) .build() { }