Enum aws_sdk_backup::Error
source · [−]#[non_exhaustive]
pub enum Error {
AlreadyExistsException(AlreadyExistsException),
ConflictException(ConflictException),
DependencyFailureException(DependencyFailureException),
InvalidParameterValueException(InvalidParameterValueException),
InvalidRequestException(InvalidRequestException),
InvalidResourceStateException(InvalidResourceStateException),
LimitExceededException(LimitExceededException),
MissingParameterValueException(MissingParameterValueException),
ResourceNotFoundException(ResourceNotFoundException),
ServiceUnavailableException(ServiceUnavailableException),
Unhandled(Box<dyn Error + Send + Sync + 'static>),
}
Expand description
All possible error types for this service.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
AlreadyExistsException(AlreadyExistsException)
The required resource already exists.
ConflictException(ConflictException)
Backup can't perform the action that you requested until it finishes performing a previous action. Try again later.
DependencyFailureException(DependencyFailureException)
A dependent Amazon Web Services service or resource returned an error to the Backup service, and the action cannot be completed.
InvalidParameterValueException(InvalidParameterValueException)
Indicates that something is wrong with a parameter's value. For example, the value is out of range.
InvalidRequestException(InvalidRequestException)
Indicates that something is wrong with the input to the request. For example, a parameter is of the wrong type.
InvalidResourceStateException(InvalidResourceStateException)
Backup is already performing an action on this recovery point. It can't perform the action you requested until the first action finishes. Try again later.
LimitExceededException(LimitExceededException)
A limit in the request has been exceeded; for example, a maximum number of items allowed in a request.
MissingParameterValueException(MissingParameterValueException)
Indicates that a required parameter is missing.
ResourceNotFoundException(ResourceNotFoundException)
A resource that is required for the action doesn't exist.
ServiceUnavailableException(ServiceUnavailableException)
The request failed due to a temporary failure of the server.
Unhandled(Box<dyn Error + Send + Sync + 'static>)
An unhandled error occurred.
Trait Implementations
sourceimpl Error for Error
impl Error for Error
1.30.0 · sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
use the Display impl or to_string()