初始化环境文件
This commit is contained in:
20
node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketsCommand.js
generated
vendored
Normal file
20
node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketsCommand.js
generated
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3";
|
||||
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
||||
import { Command as $Command } from "@smithy/smithy-client";
|
||||
import { commonParams } from "../endpoint/EndpointParameters";
|
||||
import { ListBuckets$ } from "../schemas/schemas_0";
|
||||
export { $Command };
|
||||
export class ListBucketsCommand extends $Command
|
||||
.classBuilder()
|
||||
.ep(commonParams)
|
||||
.m(function (Command, cs, config, o) {
|
||||
return [
|
||||
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
||||
getThrow200ExceptionsPlugin(config),
|
||||
];
|
||||
})
|
||||
.s("AmazonS3", "ListBuckets", {})
|
||||
.n("S3Client", "ListBucketsCommand")
|
||||
.sc(ListBuckets$)
|
||||
.build() {
|
||||
}
|
||||
Reference in New Issue
Block a user