pub enum DeleteClusterSubnetGroupError {
ClusterSubnetGroupNotFoundFault(String),
InvalidClusterSubnetGroupStateFault(String),
InvalidClusterSubnetStateFault(String),
}
Expand description
Errors returned by DeleteClusterSubnetGroup
Variants§
ClusterSubnetGroupNotFoundFault(String)
The cluster subnet group name does not refer to an existing cluster subnet group.
InvalidClusterSubnetGroupStateFault(String)
The cluster subnet group cannot be deleted because it is in use.
InvalidClusterSubnetStateFault(String)
The state of the subnet is invalid.
Implementations§
Trait Implementations§
Source§impl Error for DeleteClusterSubnetGroupError
impl Error for DeleteClusterSubnetGroupError
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 DeleteClusterSubnetGroupError
impl PartialEq for DeleteClusterSubnetGroupError
Source§fn eq(&self, other: &DeleteClusterSubnetGroupError) -> bool
fn eq(&self, other: &DeleteClusterSubnetGroupError) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DeleteClusterSubnetGroupError
Auto Trait Implementations§
impl Freeze for DeleteClusterSubnetGroupError
impl RefUnwindSafe for DeleteClusterSubnetGroupError
impl Send for DeleteClusterSubnetGroupError
impl Sync for DeleteClusterSubnetGroupError
impl Unpin for DeleteClusterSubnetGroupError
impl UnwindSafe for DeleteClusterSubnetGroupError
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