#[non_exhaustive]pub enum DeleteDeploymentConfigError {
DeploymentConfigInUseException(DeploymentConfigInUseException),
DeploymentConfigNameRequiredException(DeploymentConfigNameRequiredException),
InvalidDeploymentConfigNameException(InvalidDeploymentConfigNameException),
InvalidOperationException(InvalidOperationException),
Unhandled(Unhandled),
}
Expand description
Error type for the DeleteDeploymentConfigError
operation.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
DeploymentConfigInUseException(DeploymentConfigInUseException)
The deployment configuration is still in use.
DeploymentConfigNameRequiredException(DeploymentConfigNameRequiredException)
The deployment configuration name was not specified.
InvalidDeploymentConfigNameException(InvalidDeploymentConfigNameException)
The deployment configuration name was specified in an invalid format.
InvalidOperationException(InvalidOperationException)
An invalid operation was detected.
Unhandled(Unhandled)
An unexpected error occurred (e.g., invalid JSON returned by the service or an unknown error code).
Implementations§
source§impl DeleteDeploymentConfigError
impl DeleteDeploymentConfigError
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 DeleteDeploymentConfigError::Unhandled
variant from any error type.
sourcepub fn generic(err: ErrorMetadata) -> Self
pub fn generic(err: ErrorMetadata) -> Self
Creates the DeleteDeploymentConfigError::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_deployment_config_in_use_exception(&self) -> bool
pub fn is_deployment_config_in_use_exception(&self) -> bool
Returns true
if the error kind is DeleteDeploymentConfigError::DeploymentConfigInUseException
.
sourcepub fn is_deployment_config_name_required_exception(&self) -> bool
pub fn is_deployment_config_name_required_exception(&self) -> bool
Returns true
if the error kind is DeleteDeploymentConfigError::DeploymentConfigNameRequiredException
.
sourcepub fn is_invalid_deployment_config_name_exception(&self) -> bool
pub fn is_invalid_deployment_config_name_exception(&self) -> bool
Returns true
if the error kind is DeleteDeploymentConfigError::InvalidDeploymentConfigNameException
.
sourcepub fn is_invalid_operation_exception(&self) -> bool
pub fn is_invalid_operation_exception(&self) -> bool
Returns true
if the error kind is DeleteDeploymentConfigError::InvalidOperationException
.
Trait Implementations§
source§impl CreateUnhandledError for DeleteDeploymentConfigError
impl CreateUnhandledError for DeleteDeploymentConfigError
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 DeleteDeploymentConfigError
impl Debug for DeleteDeploymentConfigError
source§impl Error for DeleteDeploymentConfigError
impl Error for DeleteDeploymentConfigError
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<DeleteDeploymentConfigError> for Error
impl From<DeleteDeploymentConfigError> for Error
source§fn from(err: DeleteDeploymentConfigError) -> Self
fn from(err: DeleteDeploymentConfigError) -> Self
source§impl ProvideErrorMetadata for DeleteDeploymentConfigError
impl ProvideErrorMetadata for DeleteDeploymentConfigError
source§fn meta(&self) -> &ErrorMetadata
fn meta(&self) -> &ErrorMetadata
source§impl RequestId for DeleteDeploymentConfigError
impl RequestId for DeleteDeploymentConfigError
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.