pub enum DeletePermissionError {
InvalidArn(String),
InvalidState(String),
RequestFailed(String),
ResourceNotFound(String),
}
Expand description
Errors returned by DeletePermission
Variants§
InvalidArn(String)
The requested Amazon Resource Name (ARN) does not refer to an existing resource.
InvalidState(String)
The private CA is in a state during which a report or certificate cannot be generated.
RequestFailed(String)
The request has failed for an unspecified reason.
ResourceNotFound(String)
A resource such as a private CA, S3 bucket, certificate, or audit report cannot be found.
Implementations§
Source§impl DeletePermissionError
impl DeletePermissionError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<DeletePermissionError>
Trait Implementations§
Source§impl Debug for DeletePermissionError
impl Debug for DeletePermissionError
Source§impl Display for DeletePermissionError
impl Display for DeletePermissionError
Source§impl Error for DeletePermissionError
impl Error for DeletePermissionError
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 DeletePermissionError
impl PartialEq for DeletePermissionError
impl StructuralPartialEq for DeletePermissionError
Auto Trait Implementations§
impl Freeze for DeletePermissionError
impl RefUnwindSafe for DeletePermissionError
impl Send for DeletePermissionError
impl Sync for DeletePermissionError
impl Unpin for DeletePermissionError
impl UnwindSafe for DeletePermissionError
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