UNPKG

aws-cdk-lib

Version:

Version 2 of the AWS Cloud Development Kit library

11 lines (10 loc) 304 B
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; };