pub enum PutLifecycleConfigurationError {
BadRequest(String),
FileSystemNotFound(String),
IncorrectFileSystemLifeCycleState(String),
InternalServerError(String),
}Expand description
Errors returned by PutLifecycleConfiguration
Variants§
BadRequest(String)
Returned if the request is malformed or contains an error such as an invalid parameter value or a missing required parameter.
FileSystemNotFound(String)
Returned if the specified FileSystemId value doesn't exist in the requester's AWS account.
IncorrectFileSystemLifeCycleState(String)
Returned if the file system's lifecycle state is not "available".
InternalServerError(String)
Returned if an error occurred on the server side.
Implementations§
Trait Implementations§
Source§impl Error for PutLifecycleConfigurationError
impl Error for PutLifecycleConfigurationError
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 PutLifecycleConfigurationError
impl PartialEq for PutLifecycleConfigurationError
Source§fn eq(&self, other: &PutLifecycleConfigurationError) -> bool
fn eq(&self, other: &PutLifecycleConfigurationError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PutLifecycleConfigurationError
Auto Trait Implementations§
impl Freeze for PutLifecycleConfigurationError
impl RefUnwindSafe for PutLifecycleConfigurationError
impl Send for PutLifecycleConfigurationError
impl Sync for PutLifecycleConfigurationError
impl Unpin for PutLifecycleConfigurationError
impl UnwindSafe for PutLifecycleConfigurationError
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