UNPKG

cdk-amazon-chime-resources

Version:

![Experimental](https://img.shields.io/badge/experimental-important.svg?style=for-the-badge)

18 lines (17 loc) 641 B
import type { DefaultsMode, ResolvedDefaultsMode } from "@aws-sdk/smithy-client"; import type { Provider } from "@aws-sdk/types"; /** * @internal */ export interface ResolveDefaultsModeConfigOptions { defaultsMode?: DefaultsMode | Provider<DefaultsMode>; region?: string | Provider<string>; } /** * Validate the defaultsMode configuration. If the value is set to "auto", it * resolves the value to "in-region", "cross-region", or "standard". * * @default "legacy" * @internal */ export declare const resolveDefaultsModeConfig: ({ region, defaultsMode, }?: ResolveDefaultsModeConfigOptions) => Provider<ResolvedDefaultsMode>;