#[non_exhaustive]pub enum UpdateJobExecutionError {
CertificateValidationException(CertificateValidationException),
InvalidRequestException(InvalidRequestException),
InvalidStateTransitionException(InvalidStateTransitionException),
ResourceNotFoundException(ResourceNotFoundException),
ServiceUnavailableException(ServiceUnavailableException),
ThrottlingException(ThrottlingException),
Unhandled(Unhandled),
}Expand description
Error type for the UpdateJobExecutionError operation.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
CertificateValidationException(CertificateValidationException)
The certificate is invalid.
InvalidRequestException(InvalidRequestException)
The contents of the request were invalid. For example, this code is returned when an UpdateJobExecution request contains invalid status details. The message contains details about the error.
InvalidStateTransitionException(InvalidStateTransitionException)
An update attempted to change the job execution to a state that is invalid because of the job execution's current state (for example, an attempt to change a request in state SUCCESS to state IN_PROGRESS). In this case, the body of the error message also contains the executionState field.
ResourceNotFoundException(ResourceNotFoundException)
The specified resource does not exist.
The service is temporarily unavailable.
ThrottlingException(ThrottlingException)
The rate exceeds the limit.
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 UpdateJobExecutionError
impl UpdateJobExecutionError
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 UpdateJobExecutionError::Unhandled variant from any error type.
sourcepub fn generic(err: ErrorMetadata) -> Self
pub fn generic(err: ErrorMetadata) -> Self
Creates the UpdateJobExecutionError::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_certificate_validation_exception(&self) -> bool
pub fn is_certificate_validation_exception(&self) -> bool
Returns true if the error kind is UpdateJobExecutionError::CertificateValidationException.
sourcepub fn is_invalid_request_exception(&self) -> bool
pub fn is_invalid_request_exception(&self) -> bool
Returns true if the error kind is UpdateJobExecutionError::InvalidRequestException.
sourcepub fn is_invalid_state_transition_exception(&self) -> bool
pub fn is_invalid_state_transition_exception(&self) -> bool
Returns true if the error kind is UpdateJobExecutionError::InvalidStateTransitionException.
sourcepub fn is_resource_not_found_exception(&self) -> bool
pub fn is_resource_not_found_exception(&self) -> bool
Returns true if the error kind is UpdateJobExecutionError::ResourceNotFoundException.
Returns true if the error kind is UpdateJobExecutionError::ServiceUnavailableException.
sourcepub fn is_throttling_exception(&self) -> bool
pub fn is_throttling_exception(&self) -> bool
Returns true if the error kind is UpdateJobExecutionError::ThrottlingException.
Trait Implementations§
source§impl CreateUnhandledError for UpdateJobExecutionError
impl CreateUnhandledError for UpdateJobExecutionError
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 UpdateJobExecutionError
impl Debug for UpdateJobExecutionError
source§impl Display for UpdateJobExecutionError
impl Display for UpdateJobExecutionError
source§impl Error for UpdateJobExecutionError
impl Error for UpdateJobExecutionError
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<UpdateJobExecutionError> for Error
impl From<UpdateJobExecutionError> for Error
source§fn from(err: UpdateJobExecutionError) -> Self
fn from(err: UpdateJobExecutionError) -> Self
source§impl ProvideErrorMetadata for UpdateJobExecutionError
impl ProvideErrorMetadata for UpdateJobExecutionError
source§fn meta(&self) -> &ErrorMetadata
fn meta(&self) -> &ErrorMetadata
source§impl RequestId for UpdateJobExecutionError
impl RequestId for UpdateJobExecutionError
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.