Rocky_Mountain_Vending/.pnpm-store/v10/files/91/314433beef11b64f737183c04ed386d057923072c1dbd285cb376bc656718989d7c9d775936c8a65bc0134002a731c85eb50e8585a9ef0cb8407735fef6199
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

29 lines
981 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 { SelectObjectContent$ } from "../schemas/schemas_0";
export { $Command };
export class SelectObjectContentCommand extends $Command
.classBuilder()
.ep({
...commonParams,
Bucket: { type: "contextParams", name: "Bucket" },
})
.m(function (Command, cs, config, o) {
return [
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
getThrow200ExceptionsPlugin(config),
getSsecPlugin(config),
];
})
.s("AmazonS3", "SelectObjectContent", {
eventStream: {
output: true,
},
})
.n("S3Client", "SelectObjectContentCommand")
.sc(SelectObjectContent$)
.build() {
}