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>
16 lines
542 B
Text
16 lines
542 B
Text
import { AwsCredentialIdentity, Profile } from "@smithy/types";
|
|
import { FromIniInit } from "./fromIni";
|
|
export interface StaticCredsProfile extends Profile {
|
|
aws_access_key_id: string;
|
|
aws_secret_access_key: string;
|
|
aws_session_token?: string;
|
|
aws_credential_scope?: string;
|
|
aws_account_id?: string;
|
|
}
|
|
export declare const isStaticCredsProfile: (
|
|
arg: any
|
|
) => arg is StaticCredsProfile;
|
|
export declare const resolveStaticCredentials: (
|
|
profile: StaticCredsProfile,
|
|
options?: FromIniInit
|
|
) => Promise<AwsCredentialIdentity>;
|