#[non_exhaustive]pub enum StopDBClusterError {
DbClusterNotFoundFault(DbClusterNotFoundFault),
InvalidDbClusterStateFault(InvalidDbClusterStateFault),
InvalidDbInstanceStateFault(InvalidDbInstanceStateFault),
Unhandled(Unhandled),
}
Expand description
Error type for the StopDBClusterError
operation.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
DbClusterNotFoundFault(DbClusterNotFoundFault)
DBClusterIdentifier
doesn't refer to an existing cluster.
InvalidDbClusterStateFault(InvalidDbClusterStateFault)
The cluster isn't in a valid state.
InvalidDbInstanceStateFault(InvalidDbInstanceStateFault)
The specified instance isn't in the available state.
Unhandled(Unhandled)
An unexpected error occurred (e.g., invalid JSON returned by the service or an unknown error code).
Implementations§
source§impl StopDBClusterError
impl StopDBClusterError
sourcepub fn unhandled(err: impl Into<Box<dyn Error + Send + Sync + 'static>>) -> Self
pub fn unhandled(err: impl Into<Box<dyn Error + Send + Sync + 'static>>) -> Self
Creates the StopDBClusterError::Unhandled
variant from any error type.
sourcepub fn generic(err: ErrorMetadata) -> Self
pub fn generic(err: ErrorMetadata) -> Self
Creates the StopDBClusterError::Unhandled
variant from a ::aws_smithy_types::error::ErrorMetadata
.
sourcepub fn meta(&self) -> &ErrorMetadata
pub fn meta(&self) -> &ErrorMetadata
Returns error metadata, which includes the error code, message, request ID, and potentially additional information.
sourcepub fn is_db_cluster_not_found_fault(&self) -> bool
pub fn is_db_cluster_not_found_fault(&self) -> bool
Returns true
if the error kind is StopDBClusterError::DbClusterNotFoundFault
.
sourcepub fn is_invalid_db_cluster_state_fault(&self) -> bool
pub fn is_invalid_db_cluster_state_fault(&self) -> bool
Returns true
if the error kind is StopDBClusterError::InvalidDbClusterStateFault
.
sourcepub fn is_invalid_db_instance_state_fault(&self) -> bool
pub fn is_invalid_db_instance_state_fault(&self) -> bool
Returns true
if the error kind is StopDBClusterError::InvalidDbInstanceStateFault
.
Trait Implementations§
source§impl CreateUnhandledError for StopDBClusterError
impl CreateUnhandledError for StopDBClusterError
source§fn create_unhandled_error(
source: Box<dyn Error + Send + Sync + 'static>,
meta: Option<ErrorMetadata>
) -> Self
fn create_unhandled_error( source: Box<dyn Error + Send + Sync + 'static>, meta: Option<ErrorMetadata> ) -> Self
source
and error metadata.source§impl Debug for StopDBClusterError
impl Debug for StopDBClusterError
source§impl Display for StopDBClusterError
impl Display for StopDBClusterError
source§impl Error for StopDBClusterError
impl Error for StopDBClusterError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
source§impl From<StopDBClusterError> for Error
impl From<StopDBClusterError> for Error
source§fn from(err: StopDBClusterError) -> Self
fn from(err: StopDBClusterError) -> Self
source§impl ProvideErrorMetadata for StopDBClusterError
impl ProvideErrorMetadata for StopDBClusterError
source§fn meta(&self) -> &ErrorMetadata
fn meta(&self) -> &ErrorMetadata
source§impl RequestId for StopDBClusterError
impl RequestId for StopDBClusterError
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.