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>
12 lines
565 B
Text
12 lines
565 B
Text
import { CredentialProviderOptions, RuntimeConfigIdentityProvider, TokenIdentity } from "@aws-sdk/types";
|
|
import { SourceProfileInit } from "@smithy/shared-ini-file-loader";
|
|
export interface FromSsoInit extends SourceProfileInit, CredentialProviderOptions {
|
|
/**
|
|
* @see SSOOIDCClientConfig in \@aws-sdk/client-sso-oidc.
|
|
*/
|
|
clientConfig?: any;
|
|
}
|
|
/**
|
|
* Creates a token provider that will read from SSO token cache or ssoOidc.createToken() call.
|
|
*/
|
|
export declare const fromSso: (init?: FromSsoInit) => RuntimeConfigIdentityProvider<TokenIdentity>;
|