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>
14 lines
519 B
Text
14 lines
519 B
Text
import type { CredentialProviderOptions, RuntimeConfigAwsCredentialIdentityProvider } from "@aws-sdk/types";
|
|
import { SourceProfileInit } from "@smithy/shared-ini-file-loader";
|
|
/**
|
|
* @internal
|
|
*/
|
|
export interface FromProcessInit extends SourceProfileInit, CredentialProviderOptions {
|
|
}
|
|
/**
|
|
* @internal
|
|
*
|
|
* Creates a credential provider that will read from a credential_process specified
|
|
* in ini files.
|
|
*/
|
|
export declare const fromProcess: (init?: FromProcessInit) => RuntimeConfigAwsCredentialIdentityProvider;
|