Enum rusoto_sqs::SendMessageBatchError [] [src]

pub enum SendMessageBatchError {
    BatchEntryIdsNotDistinct(String),
    BatchRequestTooLong(String),
    EmptyBatchRequest(String),
    InvalidBatchEntryId(String),
    TooManyEntriesInBatchRequest(String),
    UnsupportedOperation(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by SendMessageBatch

Variants

Two or more batch entries in the request have the same Id.

The length of all the messages put together is more than the limit.

The batch request doesn't contain any entries.

The Id of a batch entry in a batch request doesn't abide by the specification.

The batch request contains more entries than permissible.

Error code 400. Unsupported operation.

An error occurred dispatching the HTTP request

An error was encountered with AWS credentials.

A validation error occurred. Details from AWS are provided.

An unknown error occurred. The raw HTTP response is provided.

Methods

impl SendMessageBatchError
[src]

Trait Implementations

impl Debug for SendMessageBatchError
[src]

Formats the value using the given formatter.

impl PartialEq for SendMessageBatchError
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl From<XmlParseError> for SendMessageBatchError
[src]

Performs the conversion.

impl From<CredentialsError> for SendMessageBatchError
[src]

Performs the conversion.

impl From<HttpDispatchError> for SendMessageBatchError
[src]

Performs the conversion.

impl Display for SendMessageBatchError
[src]

Formats the value using the given formatter. Read more

impl Error for SendMessageBatchError
[src]

A short description of the error. Read more

The lower-level cause of this error, if any. Read more