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