UNPKG

cdk-iot-greengrass-fleet-provisioning

Version:

CDK Construct for AWS IoT Greengrass Fleet Provisioning (with AWS IoT Certificates)

25 lines (24 loc) 766 B
import type { RetryQuota } from "./types"; /** * @internal */ export interface DefaultRetryQuotaOptions { /** * The total amount of retry token to be incremented from retry token balance * if an SDK operation invocation succeeds without requiring a retry request. */ noRetryIncrement?: number; /** * The total amount of retry tokens to be decremented from retry token balance. */ retryCost?: number; /** * The total amount of retry tokens to be decremented from retry token balance * when a throttling error is encountered. */ timeoutRetryCost?: number; } /** * @internal */ export declare const getDefaultRetryQuota: (initialRetryTokens: number, options?: DefaultRetryQuotaOptions) => RetryQuota;