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>
16 lines
720 B
Text
16 lines
720 B
Text
import { Logger, Provider } from "@smithy/types";
|
|
import { InstanceMetadataCredentials } from "../types";
|
|
/**
|
|
* @internal
|
|
*
|
|
* IMDS credential supports static stability feature. When used, the expiration
|
|
* of recently issued credentials is extended. The server side allows using
|
|
* the recently expired credentials. This mitigates impact when clients using
|
|
* refreshable credentials are unable to retrieve updates.
|
|
*
|
|
* @param provider Credential provider
|
|
* @returns A credential provider that supports static stability
|
|
*/
|
|
export declare const staticStabilityProvider: (provider: Provider<InstanceMetadataCredentials>, options?: {
|
|
logger?: Logger;
|
|
}) => Provider<InstanceMetadataCredentials>;
|