#[non_exhaustive]pub enum StopDeploymentError {
DeploymentAlreadyCompletedException(DeploymentAlreadyCompletedException),
DeploymentDoesNotExistException(DeploymentDoesNotExistException),
DeploymentGroupDoesNotExistException(DeploymentGroupDoesNotExistException),
DeploymentIdRequiredException(DeploymentIdRequiredException),
InvalidDeploymentIdException(InvalidDeploymentIdException),
UnsupportedActionForDeploymentTypeException(UnsupportedActionForDeploymentTypeException),
Unhandled(Unhandled),
}
Expand description
Error type for the StopDeploymentError
operation.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
DeploymentAlreadyCompletedException(DeploymentAlreadyCompletedException)
The deployment is already complete.
DeploymentDoesNotExistException(DeploymentDoesNotExistException)
The deployment with the user or Amazon Web Services account does not exist.
DeploymentGroupDoesNotExistException(DeploymentGroupDoesNotExistException)
The named deployment group with the user or Amazon Web Services account does not exist.
DeploymentIdRequiredException(DeploymentIdRequiredException)
At least one deployment ID must be specified.
InvalidDeploymentIdException(InvalidDeploymentIdException)
At least one of the deployment IDs was specified in an invalid format.
UnsupportedActionForDeploymentTypeException(UnsupportedActionForDeploymentTypeException)
A call was submitted that is not supported for the specified deployment type.
Unhandled(Unhandled)
Unhandled
directly is not forwards compatible. Instead, match using a variable wildcard pattern and check .code()
:
err if err.code() == Some("SpecificExceptionCode") => { /* handle the error */ }
See ProvideErrorMetadata
for what information is available for the error.An unexpected error occurred (e.g., invalid JSON returned by the service or an unknown error code).
Implementations§
source§impl StopDeploymentError
impl StopDeploymentError
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 StopDeploymentError::Unhandled
variant from any error type.
sourcepub fn generic(err: ErrorMetadata) -> Self
pub fn generic(err: ErrorMetadata) -> Self
Creates the StopDeploymentError::Unhandled
variant from an 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_already_completed_exception(&self) -> bool
pub fn is_deployment_already_completed_exception(&self) -> bool
Returns true
if the error kind is StopDeploymentError::DeploymentAlreadyCompletedException
.
sourcepub fn is_deployment_does_not_exist_exception(&self) -> bool
pub fn is_deployment_does_not_exist_exception(&self) -> bool
Returns true
if the error kind is StopDeploymentError::DeploymentDoesNotExistException
.
sourcepub fn is_deployment_group_does_not_exist_exception(&self) -> bool
pub fn is_deployment_group_does_not_exist_exception(&self) -> bool
Returns true
if the error kind is StopDeploymentError::DeploymentGroupDoesNotExistException
.
sourcepub fn is_deployment_id_required_exception(&self) -> bool
pub fn is_deployment_id_required_exception(&self) -> bool
Returns true
if the error kind is StopDeploymentError::DeploymentIdRequiredException
.
sourcepub fn is_invalid_deployment_id_exception(&self) -> bool
pub fn is_invalid_deployment_id_exception(&self) -> bool
Returns true
if the error kind is StopDeploymentError::InvalidDeploymentIdException
.
sourcepub fn is_unsupported_action_for_deployment_type_exception(&self) -> bool
pub fn is_unsupported_action_for_deployment_type_exception(&self) -> bool
Returns true
if the error kind is StopDeploymentError::UnsupportedActionForDeploymentTypeException
.
Trait Implementations§
source§impl CreateUnhandledError for StopDeploymentError
impl CreateUnhandledError for StopDeploymentError
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 StopDeploymentError
impl Debug for StopDeploymentError
source§impl Display for StopDeploymentError
impl Display for StopDeploymentError
source§impl Error for StopDeploymentError
impl Error for StopDeploymentError
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<StopDeploymentError> for Error
impl From<StopDeploymentError> for Error
source§fn from(err: StopDeploymentError) -> Self
fn from(err: StopDeploymentError) -> Self
source§impl ProvideErrorMetadata for StopDeploymentError
impl ProvideErrorMetadata for StopDeploymentError
source§fn meta(&self) -> &ErrorMetadata
fn meta(&self) -> &ErrorMetadata
source§impl RequestId for StopDeploymentError
impl RequestId for StopDeploymentError
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.