#[non_exhaustive]
pub enum GetMaintenanceWindowExecutionTaskInvocationErrorKind {
DoesNotExistException(DoesNotExistException),
InternalServerError(InternalServerError),
Unhandled(Unhandled),
}
Expand description
Types of errors that can occur for the GetMaintenanceWindowExecutionTaskInvocation
operation.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
DoesNotExistException(DoesNotExistException)
Error returned when the ID specified for a resource, such as a maintenance window or patch baseline, doesn't exist.
For information about resource quotas in Amazon Web Services Systems Manager, see Systems Manager service quotas in the Amazon Web Services General Reference.
InternalServerError(InternalServerError)
An error occurred on the server side.
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.