UNPKG

serverless-spy

Version:

CDK-based library for writing elegant integration tests on AWS serverless architecture and an additional web console to monitor events in real time.

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