pub enum CreateGlobalClusterError {
DBClusterNotFoundFault(String),
GlobalClusterAlreadyExistsFault(String),
GlobalClusterQuotaExceededFault(String),
InvalidDBClusterStateFault(String),
}
Expand description
Errors returned by CreateGlobalCluster
Variants§
DBClusterNotFoundFault(String)
DBClusterIdentifier
doesn't refer to an existing DB cluster.
GlobalClusterAlreadyExistsFault(String)
GlobalClusterQuotaExceededFault(String)
InvalidDBClusterStateFault(String)
The requested operation can't be performed while the cluster is in this state.
Implementations§
Source§impl CreateGlobalClusterError
impl CreateGlobalClusterError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateGlobalClusterError>
Trait Implementations§
Source§impl Debug for CreateGlobalClusterError
impl Debug for CreateGlobalClusterError
Source§impl Display for CreateGlobalClusterError
impl Display for CreateGlobalClusterError
Source§impl Error for CreateGlobalClusterError
impl Error for CreateGlobalClusterError
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 CreateGlobalClusterError
impl PartialEq for CreateGlobalClusterError
impl StructuralPartialEq for CreateGlobalClusterError
Auto Trait Implementations§
impl Freeze for CreateGlobalClusterError
impl RefUnwindSafe for CreateGlobalClusterError
impl Send for CreateGlobalClusterError
impl Sync for CreateGlobalClusterError
impl Unpin for CreateGlobalClusterError
impl UnwindSafe for CreateGlobalClusterError
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