Rocky_Mountain_Vending/.pnpm-store/v10/files/bf/e1f8dbbe9797084782dd8f1032eab22a94c40fb17277f03476f98b5bfcb178f7c703a26c0f1bbf74a9870b63ef3e29c7d8a0db3feb68608dac1b9dc3a7637a
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
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>
2026-02-12 16:22:15 -07:00

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>);