UNPKG

lambda-live-debugger

Version:

Debug Lambda functions locally like it is running in the cloud

28 lines (27 loc) 1.1 kB
import { getFlexibleChecksumsPlugin } from "@aws-sdk/middleware-flexible-checksums"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; import { commonParams } from "../endpoint/EndpointParameters"; import { PutBucketVersioning } from "../schemas/schemas_0"; export { $Command }; export class PutBucketVersioningCommand extends $Command .classBuilder() .ep({ ...commonParams, UseS3ExpressControlEndpoint: { type: "staticContextParams", value: true }, Bucket: { type: "contextParams", name: "Bucket" }, }) .m(function (Command, cs, config, o) { return [ getEndpointPlugin(config, Command.getEndpointParameterInstructions()), getFlexibleChecksumsPlugin(config, { requestAlgorithmMember: { httpHeader: "x-amz-sdk-checksum-algorithm", name: "ChecksumAlgorithm" }, requestChecksumRequired: true, }), ]; }) .s("AmazonS3", "PutBucketVersioning", {}) .n("S3Client", "PutBucketVersioningCommand") .sc(PutBucketVersioning) .build() { }