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>
11 lines
429 B
Text
11 lines
429 B
Text
import { createAggregatedClient } from "@smithy/smithy-client";
|
|
import { AssumeRoleCommand } from "./commands/AssumeRoleCommand";
|
|
import { AssumeRoleWithWebIdentityCommand, } from "./commands/AssumeRoleWithWebIdentityCommand";
|
|
import { STSClient } from "./STSClient";
|
|
const commands = {
|
|
AssumeRoleCommand,
|
|
AssumeRoleWithWebIdentityCommand,
|
|
};
|
|
export class STS extends STSClient {
|
|
}
|
|
createAggregatedClient(commands, STS);
|