# Functions
No description provided by the author
No description provided by the author
NotFound returns true if the error represents a "resource not found" condition.
RetryConfigContext allows configuration of StateChangeConf's various time arguments.
RetryUntilNotFound retries the specified function until it returns a resource.NotFoundError.
RetryUntilNotFoundContext retries the specified function until it returns a resource.NotFoundError.
RetryWhen retries the function `f` when the error it returns satisfies `predicate`.
RetryWhenAWSErrCodeEquals retries the specified function when it returns one of the specified AWS error code.
RetryWhenAWSErrCodeEqualsContext retries the specified function when it returns one of the specified AWS error code.
RetryWhenAWSErrMessageContains retries the specified function when it returns an AWS error containing the specified message.
RetryWhenAWSErrMessageContainsContext retries the specified function when it returns an AWS error containing the specified message.
RetryWhenContext retries the function `f` when the error it returns satisfies `predicate`.
RetryWhenNewResourceNotFound retries the specified function when it returns a resource.NotFoundError and `isNewResource` is true.
RetryWhenNewResourceNotFoundContext retries the specified function when it returns a resource.NotFoundError and `isNewResource` is true.
RetryWhenNotFound retries the specified function when it returns a resource.NotFoundError.
RetryWhenNotFoundContext retries the specified function when it returns a resource.NotFoundError.
SetLastError sets the LastError field on the error if supported.
SingularDataSourceFindError returns a standard error message for a singular data source's non-nil resource find error.
TimedOut returns true if the error represents a "wait timed out" condition.
WaitUntil waits for the function `f` to return `true`.
WaitUntilContext waits for the function `f` to return `true`.
# Variables
No description provided by the author
No description provided by the author
# Structs
No description provided by the author
No description provided by the author
No description provided by the author
# Type aliases
Retryable is a function that is used to decide if a function's error is retryable or not.