Rocky_Mountain_Vending/.pnpm-store/v10/files/fc/cc94ed06c6b6f829bbd531e625e8ecc259c39487803bb412ddb6e4ff1502fe7e4dd7f1dcb8f89ba6a4b95602180011658920edc0edfcf2e63f8c6feab3427d
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

30 lines
919 B
Text

import { AwsIdentityProperties } from "@aws-sdk/types";
import { Logger, ParsedIniData } from "@smithy/types";
import { FromIniInit } from "./fromIni";
import { ResolveProfileData } from "./resolveProfileData";
export interface AssumeRoleParams {
RoleArn: string;
RoleSessionName: string;
ExternalId?: string;
SerialNumber?: string;
TokenCode?: string;
DurationSeconds?: number;
}
export declare const isAssumeRoleProfile: (
arg: any,
{
profile,
logger,
}?: {
profile?: string;
logger?: Logger;
}
) => boolean;
export declare const resolveAssumeRoleCredentials: (
profileName: string,
profiles: ParsedIniData,
options: FromIniInit,
callerClientConfig: AwsIdentityProperties["callerClientConfig"] | undefined,
visitedProfiles: Record<string, true> | undefined,
resolveProfileData: ResolveProfileData
) => Promise<import("@aws-sdk/types").AttributedAwsCredentialIdentity>;