pub struct Config { /* private fields */ }
Expand description

Retry Policy Configuration

Without specific use cases, users should generally rely on the default values set by [Config::default](Config::default).`

Currently these fields are private and no setters provided. As needed, this configuration will become user-modifiable in the future..

Implementations

Override b in the exponential backoff computation

By default, base is a randomly generated value between 0 and 1. In tests, it can be helpful to override this:

use aws_smithy_client::retry::Config;
let conf = Config::default().with_base(||1_f64);

Override the maximum number of attempts

max_attempts must be set to a value of at least 1 (indicating that retries are disabled).

Override the default backoff multiplier of 1 second.

Example

For a request that gets retried 3 times, when initial_backoff is 1 second:

  • the first retry will occur after 0 to 1 seconds
  • the second retry will occur after 0 to 2 seconds
  • the third retry will occur after 0 to 4 seconds

For a request that gets retried 3 times, when initial_backoff is 30 milliseconds:

  • the first retry will occur after 0 to 30 milliseconds
  • the second retry will occur after 0 to 60 milliseconds
  • the third retry will occur after 0 to 120 milliseconds

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Converts to this type from the input type.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more