Rocky_Mountain_Vending/.pnpm-store/v10/files/62/9302d4ec0fcc935e0bc9089aaf1105327f66d927e6e8d7b2b727eab03803de8056b0da9760a09484862fbc15f51c7f27e91ee93abca1999d040fc454df6044
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
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>
2026-02-12 16:22:15 -07:00

24 lines
857 B
Text

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 { RenameObject$ } from "../schemas/schemas_0";
export { $Command };
export class RenameObjectCommand 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),
];
})
.s("AmazonS3", "RenameObject", {})
.n("S3Client", "RenameObjectCommand")
.sc(RenameObject$)
.build() {
}