#[non_exhaustive]
pub enum DeleteMessageBatchError {
BatchEntryIdsNotDistinct(BatchEntryIdsNotDistinct),
EmptyBatchRequest(EmptyBatchRequest),
InvalidBatchEntryId(InvalidBatchEntryId),
TooManyEntriesInBatchRequest(TooManyEntriesInBatchRequest),
Unhandled(Unhandled),
}Expand description
Error type for the DeleteMessageBatchError operation.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
BatchEntryIdsNotDistinct(BatchEntryIdsNotDistinct)
Two or more batch entries in the request have the same Id.
EmptyBatchRequest(EmptyBatchRequest)
The batch request doesn't contain any entries.
InvalidBatchEntryId(InvalidBatchEntryId)
The Id of a batch entry in a batch request doesn't abide by the specification.
TooManyEntriesInBatchRequest(TooManyEntriesInBatchRequest)
The batch request contains more entries than permissible.
Unhandled(Unhandled)
An unexpected error occurred (e.g., invalid JSON returned by the service or an unknown error code).
Implementations§
source§impl DeleteMessageBatchError
impl DeleteMessageBatchError
sourcepub fn unhandled(err: impl Into<Box<dyn Error + Send + Sync + 'static>>) -> Self
pub fn unhandled(err: impl Into<Box<dyn Error + Send + Sync + 'static>>) -> Self
Creates the DeleteMessageBatchError::Unhandled variant from any error type.
sourcepub fn generic(err: ErrorMetadata) -> Self
pub fn generic(err: ErrorMetadata) -> Self
Creates the DeleteMessageBatchError::Unhandled variant from a aws_smithy_types::error::ErrorMetadata.
sourcepub fn meta(&self) -> &ErrorMetadata
pub fn meta(&self) -> &ErrorMetadata
Returns error metadata, which includes the error code, message, request ID, and potentially additional information.
sourcepub fn is_batch_entry_ids_not_distinct(&self) -> bool
pub fn is_batch_entry_ids_not_distinct(&self) -> bool
Returns true if the error kind is DeleteMessageBatchError::BatchEntryIdsNotDistinct.
sourcepub fn is_empty_batch_request(&self) -> bool
pub fn is_empty_batch_request(&self) -> bool
Returns true if the error kind is DeleteMessageBatchError::EmptyBatchRequest.
sourcepub fn is_invalid_batch_entry_id(&self) -> bool
pub fn is_invalid_batch_entry_id(&self) -> bool
Returns true if the error kind is DeleteMessageBatchError::InvalidBatchEntryId.
sourcepub fn is_too_many_entries_in_batch_request(&self) -> bool
pub fn is_too_many_entries_in_batch_request(&self) -> bool
Returns true if the error kind is DeleteMessageBatchError::TooManyEntriesInBatchRequest.
Trait Implementations§
source§impl CreateUnhandledError for DeleteMessageBatchError
impl CreateUnhandledError for DeleteMessageBatchError
source§fn create_unhandled_error(
source: Box<dyn Error + Send + Sync + 'static>,
meta: Option<ErrorMetadata>
) -> Self
fn create_unhandled_error( source: Box<dyn Error + Send + Sync + 'static>, meta: Option<ErrorMetadata> ) -> Self
source and error metadata.source§impl Debug for DeleteMessageBatchError
impl Debug for DeleteMessageBatchError
source§impl Display for DeleteMessageBatchError
impl Display for DeleteMessageBatchError
source§impl Error for DeleteMessageBatchError
impl Error for DeleteMessageBatchError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
source§impl From<DeleteMessageBatchError> for Error
impl From<DeleteMessageBatchError> for Error
source§fn from(err: DeleteMessageBatchError) -> Self
fn from(err: DeleteMessageBatchError) -> Self
source§impl ProvideErrorMetadata for DeleteMessageBatchError
impl ProvideErrorMetadata for DeleteMessageBatchError
source§fn meta(&self) -> &ErrorMetadata
fn meta(&self) -> &ErrorMetadata
source§impl RequestId for DeleteMessageBatchError
impl RequestId for DeleteMessageBatchError
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.