Files
2026-05-06 18:55:16 -05:00

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;
};