Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
26 lines
991 B
Text
26 lines
991 B
Text
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() {
|
|
}
|