pub enum ModifyDBSubnetGroupError {
DBSubnetGroupDoesNotCoverEnoughAZs(String),
DBSubnetGroupNotFoundFault(String),
DBSubnetQuotaExceededFault(String),
InvalidSubnet(String),
SubnetAlreadyInUse(String),
}
Expand description
Errors returned by ModifyDBSubnetGroup
Variants§
DBSubnetGroupDoesNotCoverEnoughAZs(String)
Subnets in the subnet group should cover at least two Availability Zones unless there is only one Availability Zone.
DBSubnetGroupNotFoundFault(String)
DBSubnetGroupName
doesn't refer to an existing subnet group.
DBSubnetQuotaExceededFault(String)
The request would cause you to exceed the allowed number of subnets in a subnet group.
InvalidSubnet(String)
The requested subnet is not valid, or multiple subnets were requested that are not all in a common virtual private cloud (VPC).
SubnetAlreadyInUse(String)
The subnet is already in use in the Availability Zone.
Implementations§
Source§impl ModifyDBSubnetGroupError
impl ModifyDBSubnetGroupError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<ModifyDBSubnetGroupError>
Trait Implementations§
Source§impl Debug for ModifyDBSubnetGroupError
impl Debug for ModifyDBSubnetGroupError
Source§impl Display for ModifyDBSubnetGroupError
impl Display for ModifyDBSubnetGroupError
Source§impl Error for ModifyDBSubnetGroupError
impl Error for ModifyDBSubnetGroupError
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 ModifyDBSubnetGroupError
impl PartialEq for ModifyDBSubnetGroupError
impl StructuralPartialEq for ModifyDBSubnetGroupError
Auto Trait Implementations§
impl Freeze for ModifyDBSubnetGroupError
impl RefUnwindSafe for ModifyDBSubnetGroupError
impl Send for ModifyDBSubnetGroupError
impl Sync for ModifyDBSubnetGroupError
impl Unpin for ModifyDBSubnetGroupError
impl UnwindSafe for ModifyDBSubnetGroupError
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