#[non_exhaustive]pub enum DeleteDBClusterSnapshotError {
DbClusterSnapshotNotFoundFault(DbClusterSnapshotNotFoundFault),
InvalidDbClusterSnapshotStateFault(InvalidDbClusterSnapshotStateFault),
Unhandled(Unhandled),
}
Expand description
Error type for the DeleteDBClusterSnapshotError
operation.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
DbClusterSnapshotNotFoundFault(DbClusterSnapshotNotFoundFault)
DBClusterSnapshotIdentifier
doesn't refer to an existing cluster snapshot.
InvalidDbClusterSnapshotStateFault(InvalidDbClusterSnapshotStateFault)
The provided value isn't a valid cluster snapshot state.
Unhandled(Unhandled)
An unexpected error occurred (e.g., invalid JSON returned by the service or an unknown error code).
Implementations§
source§impl DeleteDBClusterSnapshotError
impl DeleteDBClusterSnapshotError
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 DeleteDBClusterSnapshotError::Unhandled
variant from any error type.
sourcepub fn generic(err: ErrorMetadata) -> Self
pub fn generic(err: ErrorMetadata) -> Self
Creates the DeleteDBClusterSnapshotError::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_snapshot_not_found_fault(&self) -> bool
pub fn is_db_cluster_snapshot_not_found_fault(&self) -> bool
Returns true
if the error kind is DeleteDBClusterSnapshotError::DbClusterSnapshotNotFoundFault
.
sourcepub fn is_invalid_db_cluster_snapshot_state_fault(&self) -> bool
pub fn is_invalid_db_cluster_snapshot_state_fault(&self) -> bool
Returns true
if the error kind is DeleteDBClusterSnapshotError::InvalidDbClusterSnapshotStateFault
.
Trait Implementations§
source§impl CreateUnhandledError for DeleteDBClusterSnapshotError
impl CreateUnhandledError for DeleteDBClusterSnapshotError
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 DeleteDBClusterSnapshotError
impl Debug for DeleteDBClusterSnapshotError
source§impl Error for DeleteDBClusterSnapshotError
impl Error for DeleteDBClusterSnapshotError
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<DeleteDBClusterSnapshotError> for Error
impl From<DeleteDBClusterSnapshotError> for Error
source§fn from(err: DeleteDBClusterSnapshotError) -> Self
fn from(err: DeleteDBClusterSnapshotError) -> Self
source§impl ProvideErrorMetadata for DeleteDBClusterSnapshotError
impl ProvideErrorMetadata for DeleteDBClusterSnapshotError
source§fn meta(&self) -> &ErrorMetadata
fn meta(&self) -> &ErrorMetadata
source§impl RequestId for DeleteDBClusterSnapshotError
impl RequestId for DeleteDBClusterSnapshotError
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.