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>
34 lines
863 B
Text
34 lines
863 B
Text
import { Provider } from "@smithy/types";
|
|
/**
|
|
* @public
|
|
*/
|
|
export interface RegionInputConfig {
|
|
/**
|
|
* The AWS region to which this client will send requests
|
|
*/
|
|
region?: string | Provider<string>;
|
|
/**
|
|
* Enables FIPS compatible endpoints.
|
|
*/
|
|
useFipsEndpoint?: boolean | Provider<boolean>;
|
|
}
|
|
interface PreviouslyResolved {
|
|
}
|
|
/**
|
|
* @internal
|
|
*/
|
|
export interface RegionResolvedConfig {
|
|
/**
|
|
* Resolved value for input config {@link RegionInputConfig.region}
|
|
*/
|
|
region: Provider<string>;
|
|
/**
|
|
* Resolved value for input {@link RegionInputConfig.useFipsEndpoint}
|
|
*/
|
|
useFipsEndpoint: Provider<boolean>;
|
|
}
|
|
/**
|
|
* @internal
|
|
*/
|
|
export declare const resolveRegionConfig: <T>(input: T & RegionInputConfig & PreviouslyResolved) => T & RegionResolvedConfig;
|
|
export {};
|