pub enum CreateDBSubnetGroupError {
DBSubnetGroupAlreadyExistsFault(String),
DBSubnetGroupDoesNotCoverEnoughAZs(String),
DBSubnetGroupQuotaExceededFault(String),
DBSubnetQuotaExceededFault(String),
InvalidSubnet(String),
}
Expand description
Errors returned by CreateDBSubnetGroup
Variants§
DBSubnetGroupAlreadyExistsFault(String)
DBSubnetGroupName
is already being used by an existing subnet group.
DBSubnetGroupDoesNotCoverEnoughAZs(String)
Subnets in the subnet group should cover at least two Availability Zones unless there is only one Availability Zone.
DBSubnetGroupQuotaExceededFault(String)
The request would cause you to exceed the allowed number of subnet groups.
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).
Implementations§
Source§impl CreateDBSubnetGroupError
impl CreateDBSubnetGroupError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateDBSubnetGroupError>
Trait Implementations§
Source§impl Debug for CreateDBSubnetGroupError
impl Debug for CreateDBSubnetGroupError
Source§impl Display for CreateDBSubnetGroupError
impl Display for CreateDBSubnetGroupError
Source§impl Error for CreateDBSubnetGroupError
impl Error for CreateDBSubnetGroupError
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 CreateDBSubnetGroupError
impl PartialEq for CreateDBSubnetGroupError
impl StructuralPartialEq for CreateDBSubnetGroupError
Auto Trait Implementations§
impl Freeze for CreateDBSubnetGroupError
impl RefUnwindSafe for CreateDBSubnetGroupError
impl Send for CreateDBSubnetGroupError
impl Sync for CreateDBSubnetGroupError
impl Unpin for CreateDBSubnetGroupError
impl UnwindSafe for CreateDBSubnetGroupError
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