pub enum CreateBackupError {
BackupInProgress(String),
BadRequest(String),
FileSystemNotFound(String),
IncompatibleParameterError(String),
InternalServerError(String),
ServiceLimitExceeded(String),
UnsupportedOperation(String),
}Expand description
Errors returned by CreateBackup
Variants§
BackupInProgress(String)
Another backup is already under way. Wait for completion before initiating additional backups of this file system.
BadRequest(String)
A generic error indicating a failure with a client request.
FileSystemNotFound(String)
No Amazon FSx file systems were found based upon supplied parameters.
IncompatibleParameterError(String)
The error returned when a second request is received with the same client request token but different parameters settings. A client request token should always uniquely identify a single request.
InternalServerError(String)
A generic error indicating a server-side failure.
ServiceLimitExceeded(String)
An error indicating that a particular service limit was exceeded. You can increase some service limits by contacting AWS Support.
UnsupportedOperation(String)
The requested operation is not supported for this resource or API.
Implementations§
Source§impl CreateBackupError
impl CreateBackupError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateBackupError>
Trait Implementations§
Source§impl Debug for CreateBackupError
impl Debug for CreateBackupError
Source§impl Display for CreateBackupError
impl Display for CreateBackupError
Source§impl Error for CreateBackupError
impl Error for CreateBackupError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl PartialEq for CreateBackupError
impl PartialEq for CreateBackupError
impl StructuralPartialEq for CreateBackupError
Auto Trait Implementations§
impl Freeze for CreateBackupError
impl RefUnwindSafe for CreateBackupError
impl Send for CreateBackupError
impl Sync for CreateBackupError
impl Unpin for CreateBackupError
impl UnwindSafe for CreateBackupError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more