#[non_exhaustive]
pub enum UpdateOpsMetadataErrorKind {
InternalServerError(InternalServerError),
OpsMetadataInvalidArgumentException(OpsMetadataInvalidArgumentException),
OpsMetadataKeyLimitExceededException(OpsMetadataKeyLimitExceededException),
OpsMetadataNotFoundException(OpsMetadataNotFoundException),
OpsMetadataTooManyUpdatesException(OpsMetadataTooManyUpdatesException),
Unhandled(Unhandled),
}
Expand description
Types of errors that can occur for the UpdateOpsMetadata
operation.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
InternalServerError(InternalServerError)
An error occurred on the server side.
OpsMetadataInvalidArgumentException(OpsMetadataInvalidArgumentException)
One of the arguments passed is invalid.
OpsMetadataKeyLimitExceededException(OpsMetadataKeyLimitExceededException)
The OpsMetadata object exceeds the maximum number of OpsMetadata keys that you can assign to an application in Application Manager.
OpsMetadataNotFoundException(OpsMetadataNotFoundException)
The OpsMetadata object doesn't exist.
OpsMetadataTooManyUpdatesException(OpsMetadataTooManyUpdatesException)
The system is processing too many concurrent updates. Wait a few moments and try again.
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.