#[non_exhaustive]
pub enum SendMessageBatchError {
BatchEntryIdsNotDistinct(BatchEntryIdsNotDistinct),
BatchRequestTooLong(BatchRequestTooLong),
EmptyBatchRequest(EmptyBatchRequest),
InvalidBatchEntryId(InvalidBatchEntryId),
TooManyEntriesInBatchRequest(TooManyEntriesInBatchRequest),
UnsupportedOperation(UnsupportedOperation),
Unhandled(Unhandled),
}Expand description
Error type for the SendMessageBatchError 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.
BatchRequestTooLong(BatchRequestTooLong)
The length of all the messages put together is more than the limit.
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.
UnsupportedOperation(UnsupportedOperation)
Error code 400. Unsupported operation.
Unhandled(Unhandled)
An unexpected error occurred (e.g., invalid JSON returned by the service or an unknown error code).
Implementations§
source§impl SendMessageBatchError
impl SendMessageBatchError
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 SendMessageBatchError::Unhandled variant from any error type.
sourcepub fn generic(err: ErrorMetadata) -> Self
pub fn generic(err: ErrorMetadata) -> Self
Creates the SendMessageBatchError::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 SendMessageBatchError::BatchEntryIdsNotDistinct.
sourcepub fn is_batch_request_too_long(&self) -> bool
pub fn is_batch_request_too_long(&self) -> bool
Returns true if the error kind is SendMessageBatchError::BatchRequestTooLong.
sourcepub fn is_empty_batch_request(&self) -> bool
pub fn is_empty_batch_request(&self) -> bool
Returns true if the error kind is SendMessageBatchError::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 SendMessageBatchError::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 SendMessageBatchError::TooManyEntriesInBatchRequest.
sourcepub fn is_unsupported_operation(&self) -> bool
pub fn is_unsupported_operation(&self) -> bool
Returns true if the error kind is SendMessageBatchError::UnsupportedOperation.
Trait Implementations§
source§impl CreateUnhandledError for SendMessageBatchError
impl CreateUnhandledError for SendMessageBatchError
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 SendMessageBatchError
impl Debug for SendMessageBatchError
source§impl Display for SendMessageBatchError
impl Display for SendMessageBatchError
source§impl Error for SendMessageBatchError
impl Error for SendMessageBatchError
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<SendMessageBatchError> for Error
impl From<SendMessageBatchError> for Error
source§fn from(err: SendMessageBatchError) -> Self
fn from(err: SendMessageBatchError) -> Self
source§impl ProvideErrorMetadata for SendMessageBatchError
impl ProvideErrorMetadata for SendMessageBatchError
source§fn meta(&self) -> &ErrorMetadata
fn meta(&self) -> &ErrorMetadata
source§impl RequestId for SendMessageBatchError
impl RequestId for SendMessageBatchError
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.