#[non_exhaustive]
pub enum PutObjectErrorKind {
AccessDeniedException(AccessDeniedException),
IllegalArgumentException(IllegalArgumentException),
KmsInvalidKeyUsageException(KmsInvalidKeyUsageException),
NotReadableInputStreamException(NotReadableInputStreamException),
RetryableException(RetryableException),
ServiceInternalException(ServiceInternalException),
ServiceUnavailableException(ServiceUnavailableException),
ThrottlingException(ThrottlingException),
Unhandled(Box<dyn Error + Send + Sync + 'static>),
}
Expand description
Types of errors that can occur for the PutObject
operation.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
AccessDeniedException(AccessDeniedException)
IllegalArgumentException(IllegalArgumentException)
Non-retryable exception, indicates client error (wrong argument passed to API). See exception message for details.
KmsInvalidKeyUsageException(KmsInvalidKeyUsageException)
Non-retryable exception. Indicates the KMS key usage is incorrect. See exception message for details.
NotReadableInputStreamException(NotReadableInputStreamException)
Retryalble exception. Indicated issues while reading an input stream due to the networking issues or connection drop on the client side.
RetryableException(RetryableException)
Retryable exception. In general indicates internal failure that can be fixed by retry.
ServiceInternalException(ServiceInternalException)
Deprecated. To be removed from the model.
ServiceUnavailableException(ServiceUnavailableException)
Retryable exception, indicates internal server error.
ThrottlingException(ThrottlingException)
Increased rate over throttling limits. Can be retried with exponential backoff.
Unhandled(Box<dyn Error + Send + Sync + 'static>)
An unexpected error, e.g. invalid JSON returned by the service or an unknown error code