Rocky_Mountain_Vending/.pnpm-store/v10/files/a4/c11a495aebf988c9a2fad430253c34042cdf2140ac75c5d2e32fc8c864ba2d9d7ab280f54724eb0a81f5c1029fb06fe9f7f21bea7fd49a6cf12b782419c226
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

20 lines
883 B
Text

import { getEndpointPlugin } from "@smithy/middleware-endpoint";
import { Command as $Command } from "@smithy/smithy-client";
import { commonParams } from "../endpoint/EndpointParameters";
import { DeleteBucketMetadataTableConfiguration$ } from "../schemas/schemas_0";
export { $Command };
export class DeleteBucketMetadataTableConfigurationCommand 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", "DeleteBucketMetadataTableConfiguration", {})
.n("S3Client", "DeleteBucketMetadataTableConfigurationCommand")
.sc(DeleteBucketMetadataTableConfiguration$)
.build() {
}