pub enum CreateDBClusterEndpointError {
DBClusterEndpointAlreadyExistsFault(String),
DBClusterEndpointQuotaExceededFault(String),
DBClusterNotFoundFault(String),
DBInstanceNotFoundFault(String),
InvalidDBClusterStateFault(String),
InvalidDBInstanceStateFault(String),
}
Expand description
Errors returned by CreateDBClusterEndpoint
Variants§
DBClusterEndpointAlreadyExistsFault(String)
The specified custom endpoint can't be created because it already exists.
DBClusterEndpointQuotaExceededFault(String)
The cluster already has the maximum number of custom endpoints.
DBClusterNotFoundFault(String)
DBClusterIdentifier
doesn't refer to an existing DB cluster.
DBInstanceNotFoundFault(String)
DBInstanceIdentifier
doesn't refer to an existing DB instance.
InvalidDBClusterStateFault(String)
The requested operation can't be performed while the cluster is in this state.
InvalidDBInstanceStateFault(String)
The DB instance isn't in a valid state.
Implementations§
Trait Implementations§
Source§impl Debug for CreateDBClusterEndpointError
impl Debug for CreateDBClusterEndpointError
Source§impl Error for CreateDBClusterEndpointError
impl Error for CreateDBClusterEndpointError
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 CreateDBClusterEndpointError
impl PartialEq for CreateDBClusterEndpointError
Source§fn eq(&self, other: &CreateDBClusterEndpointError) -> bool
fn eq(&self, other: &CreateDBClusterEndpointError) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CreateDBClusterEndpointError
Auto Trait Implementations§
impl Freeze for CreateDBClusterEndpointError
impl RefUnwindSafe for CreateDBClusterEndpointError
impl Send for CreateDBClusterEndpointError
impl Sync for CreateDBClusterEndpointError
impl Unpin for CreateDBClusterEndpointError
impl UnwindSafe for CreateDBClusterEndpointError
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