Enum aws_sdk_codedeploy::operation::put_lifecycle_event_hook_execution_status::PutLifecycleEventHookExecutionStatusError
source · #[non_exhaustive]pub enum PutLifecycleEventHookExecutionStatusError {
DeploymentDoesNotExistException(DeploymentDoesNotExistException),
DeploymentIdRequiredException(DeploymentIdRequiredException),
InvalidDeploymentIdException(InvalidDeploymentIdException),
InvalidLifecycleEventHookExecutionIdException(InvalidLifecycleEventHookExecutionIdException),
InvalidLifecycleEventHookExecutionStatusException(InvalidLifecycleEventHookExecutionStatusException),
LifecycleEventAlreadyCompletedException(LifecycleEventAlreadyCompletedException),
UnsupportedActionForDeploymentTypeException(UnsupportedActionForDeploymentTypeException),
Unhandled(Unhandled),
}
Expand description
Error type for the PutLifecycleEventHookExecutionStatusError
operation.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
DeploymentDoesNotExistException(DeploymentDoesNotExistException)
The deployment 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.
InvalidLifecycleEventHookExecutionIdException(InvalidLifecycleEventHookExecutionIdException)
A lifecycle event hook is invalid. Review the hooks
section in your AppSpec file to ensure the lifecycle events and hooks
functions are valid.
InvalidLifecycleEventHookExecutionStatusException(InvalidLifecycleEventHookExecutionStatusException)
The result of a Lambda validation function that verifies a lifecycle event is invalid. It should return Succeeded
or Failed
.
LifecycleEventAlreadyCompletedException(LifecycleEventAlreadyCompletedException)
An attempt to return the status of an already completed lifecycle event occurred.
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 PutLifecycleEventHookExecutionStatusError
impl PutLifecycleEventHookExecutionStatusError
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 PutLifecycleEventHookExecutionStatusError::Unhandled
variant from any error type.
sourcepub fn generic(err: ErrorMetadata) -> Self
pub fn generic(err: ErrorMetadata) -> Self
Creates the PutLifecycleEventHookExecutionStatusError::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_does_not_exist_exception(&self) -> bool
pub fn is_deployment_does_not_exist_exception(&self) -> bool
Returns true
if the error kind is PutLifecycleEventHookExecutionStatusError::DeploymentDoesNotExistException
.
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 PutLifecycleEventHookExecutionStatusError::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 PutLifecycleEventHookExecutionStatusError::InvalidDeploymentIdException
.
sourcepub fn is_invalid_lifecycle_event_hook_execution_id_exception(&self) -> bool
pub fn is_invalid_lifecycle_event_hook_execution_id_exception(&self) -> bool
Returns true
if the error kind is PutLifecycleEventHookExecutionStatusError::InvalidLifecycleEventHookExecutionIdException
.
sourcepub fn is_invalid_lifecycle_event_hook_execution_status_exception(&self) -> bool
pub fn is_invalid_lifecycle_event_hook_execution_status_exception(&self) -> bool
Returns true
if the error kind is PutLifecycleEventHookExecutionStatusError::InvalidLifecycleEventHookExecutionStatusException
.
sourcepub fn is_lifecycle_event_already_completed_exception(&self) -> bool
pub fn is_lifecycle_event_already_completed_exception(&self) -> bool
Returns true
if the error kind is PutLifecycleEventHookExecutionStatusError::LifecycleEventAlreadyCompletedException
.
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 PutLifecycleEventHookExecutionStatusError::UnsupportedActionForDeploymentTypeException
.
Trait Implementations§
source§impl CreateUnhandledError for PutLifecycleEventHookExecutionStatusError
impl CreateUnhandledError for PutLifecycleEventHookExecutionStatusError
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 Error for PutLifecycleEventHookExecutionStatusError
impl Error for PutLifecycleEventHookExecutionStatusError
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<PutLifecycleEventHookExecutionStatusError> for Error
impl From<PutLifecycleEventHookExecutionStatusError> for Error
source§fn from(err: PutLifecycleEventHookExecutionStatusError) -> Self
fn from(err: PutLifecycleEventHookExecutionStatusError) -> Self
source§impl ProvideErrorMetadata for PutLifecycleEventHookExecutionStatusError
impl ProvideErrorMetadata for PutLifecycleEventHookExecutionStatusError
source§fn meta(&self) -> &ErrorMetadata
fn meta(&self) -> &ErrorMetadata
source§impl RequestId for PutLifecycleEventHookExecutionStatusError
impl RequestId for PutLifecycleEventHookExecutionStatusError
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.