11 lines
304 B
TypeScript
11 lines
304 B
TypeScript
import type { IConstruct } from 'constructs';
|
|
import { Duration } from '../../../core';
|
|
export declare function calculateRetryPolicy(scope: IConstruct, props?: {
|
|
totalTimeout?: Duration;
|
|
queryInterval?: Duration;
|
|
}): {
|
|
maxAttempts: number;
|
|
interval: Duration;
|
|
backoffRate: number;
|
|
};
|