pub enum ModifyCacheSubnetGroupError {
CacheSubnetGroupNotFoundFault(String),
CacheSubnetQuotaExceededFault(String),
InvalidSubnet(String),
SubnetInUse(String),
}
Expand description
Errors returned by ModifyCacheSubnetGroup
Variants§
CacheSubnetGroupNotFoundFault(String)
The requested cache subnet group name does not refer to an existing cache subnet group.
CacheSubnetQuotaExceededFault(String)
The request cannot be processed because it would exceed the allowed number of subnets in a cache subnet group.
InvalidSubnet(String)
An invalid subnet identifier was specified.
SubnetInUse(String)
The requested subnet is being used by another cache subnet group.
Implementations§
Source§impl ModifyCacheSubnetGroupError
impl ModifyCacheSubnetGroupError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<ModifyCacheSubnetGroupError>
Trait Implementations§
Source§impl Debug for ModifyCacheSubnetGroupError
impl Debug for ModifyCacheSubnetGroupError
Source§impl Error for ModifyCacheSubnetGroupError
impl Error for ModifyCacheSubnetGroupError
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 ModifyCacheSubnetGroupError
Auto Trait Implementations§
impl Freeze for ModifyCacheSubnetGroupError
impl RefUnwindSafe for ModifyCacheSubnetGroupError
impl Send for ModifyCacheSubnetGroupError
impl Sync for ModifyCacheSubnetGroupError
impl Unpin for ModifyCacheSubnetGroupError
impl UnwindSafe for ModifyCacheSubnetGroupError
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