Package aws.smithy.kotlin.runtime.retries.policy
Types
An object that evaluates an operation request and result to determine if a specific condition is matched.
A RetryPolicy that iterates through a list of Acceptor instances to determine the appropriate RetryDirective. Each Acceptor is evaluated in list order until one returns a non-null result. If no acceptor returns a non-null result, the directive is RetryDirective.RetryError on success or RetryDirective.TerminateAndFail on exception.
An Acceptor that matches based on a specific error type.
An Acceptor that delegates to an input/output matcher function.
An Acceptor that delegates to an output matcher function.
The evaluation of a single try.
A type of error that may be retried.
A policy that evaluates a Result from a retry attempt and indicates the action a aws.smithy.kotlin.runtime.retries.RetryStrategy should take next.
A standard retry policy which attempts to derive information from the Smithy exception hierarchy.
An Acceptor that matches based on a response's success or failure.