pub enum CreateDBParameterGroupError {
DBParameterGroupAlreadyExistsFault(String),
DBParameterGroupQuotaExceededFault(String),
}
Expand description
Errors returned by CreateDBParameterGroup
Variants§
DBParameterGroupAlreadyExistsFault(String)
A DB parameter group with the same name exists.
DBParameterGroupQuotaExceededFault(String)
The request would result in the user exceeding the allowed number of DB parameter groups.
Implementations§
Source§impl CreateDBParameterGroupError
impl CreateDBParameterGroupError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateDBParameterGroupError>
Trait Implementations§
Source§impl Debug for CreateDBParameterGroupError
impl Debug for CreateDBParameterGroupError
Source§impl Error for CreateDBParameterGroupError
impl Error for CreateDBParameterGroupError
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 CreateDBParameterGroupError
Auto Trait Implementations§
impl Freeze for CreateDBParameterGroupError
impl RefUnwindSafe for CreateDBParameterGroupError
impl Send for CreateDBParameterGroupError
impl Sync for CreateDBParameterGroupError
impl Unpin for CreateDBParameterGroupError
impl UnwindSafe for CreateDBParameterGroupError
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