package
5.64.0+incompatible
Repository: https://github.com/hashicorp/terraform-provider-aws.git
Documentation: pkg.go.dev

# README

Retry Package

The start of musings on a replacement for the Terraform Plugin SDK v2 helper/retry package.

Example Usage

for r := retry.Begin(); r.Continue(ctx); {
    if doSomething() {
        break
    }
}

# Functions

Begin returns a new retry loop configured with the default options.
BeginWithOptions returns a new retry loop configured with the provided options.
Operation returns a new wrapper on top of the specified function.

# Structs

Options configure a retry loop.
Retry holds state for managing retry loops with exponential backoff and jitter.

# Interfaces

No description provided by the author
No description provided by the author

# Type aliases

No description provided by the author
No description provided by the author