Options for createExponentialBackoffPolicy function.
readonly
optional
initialDelay: Temporal.DurationLike
The initial delay before the first retry. Defaults to 1 second.
readonly
optional
maxDelay: Temporal.DurationLike
The maximum delay between retries. Defaults to 12 hours.
readonly
optional
maxAttempts: number
The maximum number of attempts before giving up. Defaults to 10.
The factor to multiply the previous delay by for each retry. Defaults to 2.