pub async fn retry<F, U, E, Fut>(
retry_params: &RetryParams,
f: F,
) -> Result<U, E>Expand description
Retry with exponential backoff and full jitter. Implementation and default values originate from the Java SDK. See also: https://aws.amazon.com/blogs/architecture/exponential-backoff-and-jitter/.