#[non_exhaustive]
pub enum DeleteScheduledActionErrorKind {
ConcurrentUpdateException(ConcurrentUpdateException),
InternalServiceException(InternalServiceException),
ObjectNotFoundException(ObjectNotFoundException),
ValidationException(ValidationException),
Unhandled(Unhandled),
}Expand description
Types of errors that can occur for the DeleteScheduledAction operation.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
ConcurrentUpdateException(ConcurrentUpdateException)
Concurrent updates caused an exception, for example, if you request an update to an Application Auto Scaling resource that already has a pending update.
InternalServiceException(InternalServiceException)
The service encountered an internal error.
ObjectNotFoundException(ObjectNotFoundException)
The specified object could not be found. For any operation that depends on the existence of a scalable target, this exception is thrown if the scalable target with the specified service namespace, resource ID, and scalable dimension does not exist. For any operation that deletes or deregisters a resource, this exception is thrown if the resource cannot be found.
ValidationException(ValidationException)
An exception was thrown for a validation issue. Review the available parameters for the API request.
Unhandled(Unhandled)
An unexpected error occurred (e.g., invalid JSON returned by the service or an unknown error code).
When logging an error from the SDK, it is recommended that you either wrap the error in
DisplayErrorContext, use another
error reporter library that visits the error’s cause/source chain, or call
Error::source for more details about the underlying cause.