27 lines
1.1 KiB
JavaScript
27 lines
1.1 KiB
JavaScript
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_DeleteBucketMetricsConfigurationCommand, se_DeleteBucketMetricsConfigurationCommand, } from "../protocols/Aws_restXml";
|
|
export { $Command };
|
|
export class DeleteBucketMetricsConfigurationCommand 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()),
|
|
];
|
|
})
|
|
.s("AmazonS3", "DeleteBucketMetricsConfiguration", {})
|
|
.n("S3Client", "DeleteBucketMetricsConfigurationCommand")
|
|
.f(void 0, void 0)
|
|
.ser(se_DeleteBucketMetricsConfigurationCommand)
|
|
.de(de_DeleteBucketMetricsConfigurationCommand)
|
|
.build() {
|
|
}
|