pub enum RemoveTagsFromResourceError {
CacheClusterNotFoundFault(String),
InvalidARNFault(String),
SnapshotNotFoundFault(String),
TagNotFoundFault(String),
}
Expand description
Errors returned by RemoveTagsFromResource
Variants§
CacheClusterNotFoundFault(String)
The requested cluster ID does not refer to an existing cluster.
InvalidARNFault(String)
The requested Amazon Resource Name (ARN) does not refer to an existing resource.
SnapshotNotFoundFault(String)
The requested snapshot name does not refer to an existing snapshot.
TagNotFoundFault(String)
The requested tag was not found on this resource.
Implementations§
Source§impl RemoveTagsFromResourceError
impl RemoveTagsFromResourceError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<RemoveTagsFromResourceError>
Trait Implementations§
Source§impl Debug for RemoveTagsFromResourceError
impl Debug for RemoveTagsFromResourceError
Source§impl Error for RemoveTagsFromResourceError
impl Error for RemoveTagsFromResourceError
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 RemoveTagsFromResourceError
Auto Trait Implementations§
impl Freeze for RemoveTagsFromResourceError
impl RefUnwindSafe for RemoveTagsFromResourceError
impl Send for RemoveTagsFromResourceError
impl Sync for RemoveTagsFromResourceError
impl Unpin for RemoveTagsFromResourceError
impl UnwindSafe for RemoveTagsFromResourceError
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