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>
17 lines
600 B
Text
17 lines
600 B
Text
import type { CredentialProviderOptions, RuntimeConfigAwsCredentialIdentityProvider } from "@aws-sdk/types";
|
|
import { FromWebTokenInit } from "./fromWebToken";
|
|
/**
|
|
* @public
|
|
*/
|
|
export interface FromTokenFileInit extends Partial<Omit<FromWebTokenInit, "webIdentityToken">>, CredentialProviderOptions {
|
|
/**
|
|
* File location of where the `OIDC` token is stored.
|
|
*/
|
|
webIdentityTokenFile?: string;
|
|
}
|
|
/**
|
|
* @internal
|
|
*
|
|
* Represents OIDC credentials from a file on disk.
|
|
*/
|
|
export declare const fromTokenFile: (init?: FromTokenFileInit) => RuntimeConfigAwsCredentialIdentityProvider;
|