pub enum DeleteCacheSubnetGroupError {
CacheSubnetGroupInUse(String),
CacheSubnetGroupNotFoundFault(String),
}
Expand description
Errors returned by DeleteCacheSubnetGroup
Variants§
CacheSubnetGroupInUse(String)
The requested cache subnet group is currently in use.
CacheSubnetGroupNotFoundFault(String)
The requested cache subnet group name does not refer to an existing cache subnet group.
Implementations§
Source§impl DeleteCacheSubnetGroupError
impl DeleteCacheSubnetGroupError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<DeleteCacheSubnetGroupError>
Trait Implementations§
Source§impl Debug for DeleteCacheSubnetGroupError
impl Debug for DeleteCacheSubnetGroupError
Source§impl Error for DeleteCacheSubnetGroupError
impl Error for DeleteCacheSubnetGroupError
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 DeleteCacheSubnetGroupError
Auto Trait Implementations§
impl Freeze for DeleteCacheSubnetGroupError
impl RefUnwindSafe for DeleteCacheSubnetGroupError
impl Send for DeleteCacheSubnetGroupError
impl Sync for DeleteCacheSubnetGroupError
impl Unpin for DeleteCacheSubnetGroupError
impl UnwindSafe for DeleteCacheSubnetGroupError
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