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>
47 lines
1.4 KiB
Text
47 lines
1.4 KiB
Text
import { Command as $Command } from "@smithy/smithy-client";
|
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
import { AssumeRoleRequest, AssumeRoleResponse } from "../models/models_0";
|
|
import {
|
|
ServiceInputTypes,
|
|
ServiceOutputTypes,
|
|
STSClientResolvedConfig,
|
|
} from "../STSClient";
|
|
export { __MetadataBearer };
|
|
export { $Command };
|
|
export interface AssumeRoleCommandInput extends AssumeRoleRequest {}
|
|
export interface AssumeRoleCommandOutput
|
|
extends AssumeRoleResponse,
|
|
__MetadataBearer {}
|
|
declare const AssumeRoleCommand_base: {
|
|
new (
|
|
input: AssumeRoleCommandInput
|
|
): import("@smithy/smithy-client").CommandImpl<
|
|
AssumeRoleCommandInput,
|
|
AssumeRoleCommandOutput,
|
|
STSClientResolvedConfig,
|
|
ServiceInputTypes,
|
|
ServiceOutputTypes
|
|
>;
|
|
new (
|
|
input: AssumeRoleCommandInput
|
|
): import("@smithy/smithy-client").CommandImpl<
|
|
AssumeRoleCommandInput,
|
|
AssumeRoleCommandOutput,
|
|
STSClientResolvedConfig,
|
|
ServiceInputTypes,
|
|
ServiceOutputTypes
|
|
>;
|
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
};
|
|
export declare class AssumeRoleCommand extends AssumeRoleCommand_base {
|
|
protected static __types: {
|
|
api: {
|
|
input: AssumeRoleRequest;
|
|
output: AssumeRoleResponse;
|
|
};
|
|
sdk: {
|
|
input: AssumeRoleCommandInput;
|
|
output: AssumeRoleCommandOutput;
|
|
};
|
|
};
|
|
}
|