pub enum DeleteFileSystemPolicyError {
FileSystemNotFound(String),
IncorrectFileSystemLifeCycleState(String),
InternalServerError(String),
}
Expand description
Errors returned by DeleteFileSystemPolicy
Variants§
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§
Source§impl DeleteFileSystemPolicyError
impl DeleteFileSystemPolicyError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<DeleteFileSystemPolicyError>
Trait Implementations§
Source§impl Debug for DeleteFileSystemPolicyError
impl Debug for DeleteFileSystemPolicyError
Source§impl Error for DeleteFileSystemPolicyError
impl Error for DeleteFileSystemPolicyError
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()
impl StructuralPartialEq for DeleteFileSystemPolicyError
Auto Trait Implementations§
impl Freeze for DeleteFileSystemPolicyError
impl RefUnwindSafe for DeleteFileSystemPolicyError
impl Send for DeleteFileSystemPolicyError
impl Sync for DeleteFileSystemPolicyError
impl Unpin for DeleteFileSystemPolicyError
impl UnwindSafe for DeleteFileSystemPolicyError
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