32 lines
1.3 KiB
JavaScript
32 lines
1.3 KiB
JavaScript
import { getFlexibleChecksumsPlugin } from "@aws-sdk/middleware-flexible-checksums";
|
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
import { de_PutBucketVersioningCommand, se_PutBucketVersioningCommand } from "../protocols/Aws_restXml";
|
|
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 [
|
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
getFlexibleChecksumsPlugin(config, {
|
|
requestAlgorithmMember: { httpHeader: "x-amz-sdk-checksum-algorithm", name: "ChecksumAlgorithm" },
|
|
requestChecksumRequired: true,
|
|
}),
|
|
];
|
|
})
|
|
.s("AmazonS3", "PutBucketVersioning", {})
|
|
.n("S3Client", "PutBucketVersioningCommand")
|
|
.f(void 0, void 0)
|
|
.ser(se_PutBucketVersioningCommand)
|
|
.de(de_PutBucketVersioningCommand)
|
|
.build() {
|
|
}
|