initial commit
This commit is contained in:
Generated
Vendored
+20
@@ -0,0 +1,20 @@
|
||||
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
||||
import { Command as $Command } from "@smithy/smithy-client";
|
||||
import { commonParams } from "../endpoint/EndpointParameters";
|
||||
import { DeleteBucketReplication$ } from "../schemas/schemas_0";
|
||||
export { $Command };
|
||||
export class DeleteBucketReplicationCommand 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())];
|
||||
})
|
||||
.s("AmazonS3", "DeleteBucketReplication", {})
|
||||
.n("S3Client", "DeleteBucketReplicationCommand")
|
||||
.sc(DeleteBucketReplication$)
|
||||
.build() {
|
||||
}
|
||||
Reference in New Issue
Block a user