UNPKG

@aws-cdk/custom-resources

Version:

Constructs for implementing CDK custom resources

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