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.

46 lines (45 loc) 1.58 kB
import { LoadedConfigSelectors } from "@smithy/node-config-provider"; import { Provider, RetryStrategy, RetryStrategyV2 } from "@smithy/types"; export declare const ENV_MAX_ATTEMPTS = "AWS_MAX_ATTEMPTS"; export declare const CONFIG_MAX_ATTEMPTS = "max_attempts"; export declare const NODE_MAX_ATTEMPT_CONFIG_OPTIONS: LoadedConfigSelectors<number>; /** * @public */ export interface RetryInputConfig { /** * The maximum number of times requests that encounter retryable failures should be attempted. */ maxAttempts?: number | Provider<number>; /** * The strategy to retry the request. Using built-in exponential backoff strategy by default. */ retryStrategy?: RetryStrategy | RetryStrategyV2; } /** * @internal */ export interface PreviouslyResolved { /** * Specifies provider for retry algorithm to use. * @internal */ retryMode: string | Provider<string>; } /** * @internal */ export interface RetryResolvedConfig { /** * Resolved value for input config {@link RetryInputConfig.maxAttempts} */ maxAttempts: Provider<number>; /** * Resolved value for input config {@link RetryInputConfig.retryStrategy} */ retryStrategy: Provider<RetryStrategyV2 | RetryStrategy>; } export declare const resolveRetryConfig: <T>(input: T & PreviouslyResolved & RetryInputConfig) => T & RetryResolvedConfig; export declare const ENV_RETRY_MODE = "AWS_RETRY_MODE"; export declare const CONFIG_RETRY_MODE = "retry_mode"; export declare const NODE_RETRY_MODE_CONFIG_OPTIONS: LoadedConfigSelectors<string>;