#[non_exhaustive]
pub enum DescribeScheduledActionsErrorKind {
ConcurrentUpdateException(ConcurrentUpdateException),
InternalServiceException(InternalServiceException),
InvalidNextTokenException(InvalidNextTokenException),
ValidationException(ValidationException),
Unhandled(Unhandled),
}Expand description
Types of errors that can occur for the DescribeScheduledActions 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.
InvalidNextTokenException(InvalidNextTokenException)
The next token supplied was invalid.
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.