UNPKG

aws-cdk-lib

Version:

Version 2 of the AWS Cloud Development Kit library

10 lines (9 loc) 239 B
import { Duration } from '../../../core'; export declare function calculateRetryPolicy(props?: { totalTimeout?: Duration; queryInterval?: Duration; }): { maxAttempts: number; interval: Duration; backoffRate: number; };