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
683 B
Text
12 lines
683 B
Text
import type { CredentialProviderOptions } from "@aws-sdk/types";
|
|
import { AwsCredentialIdentityProvider, Logger } from "@smithy/types";
|
|
/**
|
|
* @internal
|
|
*
|
|
* Resolve the `credential_source` entry from the profile, and return the
|
|
* credential providers respectively. No memoization is needed for the
|
|
* credential source providers because memoization should be added outside the
|
|
* fromIni() provider. The source credential needs to be refreshed every time
|
|
* fromIni() is called.
|
|
*/
|
|
export declare const resolveCredentialSource: (credentialSource: string, profileName: string, logger?: Logger) => ((options?: CredentialProviderOptions) => Promise<AwsCredentialIdentityProvider>);
|