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>
19 lines
466 B
Text
19 lines
466 B
Text
import { AwsCredentialIdentity } from "@smithy/types";
|
|
/**
|
|
* @internal
|
|
*/
|
|
export interface ImdsCredentials {
|
|
AccessKeyId: string;
|
|
SecretAccessKey: string;
|
|
Token: string;
|
|
Expiration: string;
|
|
AccountId?: string;
|
|
}
|
|
/**
|
|
* @internal
|
|
*/
|
|
export declare const isImdsCredentials: (arg: any) => arg is ImdsCredentials;
|
|
/**
|
|
* @internal
|
|
*/
|
|
export declare const fromImdsCredentials: (creds: ImdsCredentials) => AwsCredentialIdentity;
|