public enum InvalidDataErrorCodes extends Enum<InvalidDataErrorCodes>
| Enum Constant and Description |
|---|
AWS_SIMPLE_QUEUE_SERVICE_BATCH_ENTRY_IDS_NOT_DISTINCT
Two or more batch entries in the request have the same Id.
HTTP Status Code: 400 Thrown in ChangeMessageVisibilityBatch, DeleteMessageBatch, SendMessageBatch. |
AWS_SIMPLE_QUEUE_SERVICE_BATCH_REQUEST_TOO_LONG
The length of all the messages put together is more than the limit.
HTTP Status Code: 400 Thrown in SendMessageBatch. |
AWS_SIMPLE_QUEUE_SERVICE_EMPTY_BATCH_REQUEST
The batch request doesn't contain any entries.
HTTP Status Code: 400 Thrown in ChangeMessageVisibilityBatch, DeleteMessageBatch, SendMessageBatch. |
AWS_SIMPLE_QUEUE_SERVICE_INVALID_BATCH_ENTRY_ID
The Id of a batch entry in a batch request doesn't abide by the specification.
HTTP Status Code: 400 Thrown in ChangeMessageVisibilityBatch, DeleteMessageBatch, SendMessageBatch. |
AWS_SIMPLE_QUEUE_SERVICE_NON_EXISTENT_QUEUE
The specified queue doesn't exist.
HTTP Status Code: 400 Thrown in GetQueueUrl, ListDeadLetterSourceQueues, PurgeQueue. |
AWS_SIMPLE_QUEUE_SERVICE_TOO_MANY_ENTRIES_IN_BATCH_REQUEST
The batch request contains more entries than permissible.
HTTP Status Code: 400 Thrown in ChangeMessageVisibilityBatch, DeleteMessageBatch, SendMessageBatch. |
INVALID_ATTRIBUTE_NAME
The specified attribute doesn't exist.
HTTP Status Code: 400 Thrown in GetQueueAttributes, SetQueueAttributes. |
INVALID_MESSAGE_CONTENTS
The message contains characters outside the allowed set.
HTTP Status Code: 400 Thrown in SendMessage. |
INVALID_PARAMETER_COMBINATION
Parameters that must not be used together were used together.
HTTP Status Code: 400 |
INVALID_PARAMETER_VALUE
An invalid or out-of-range value was supplied for the input parameter.
HTTP Status Code: 400 |
MISSING_PARAMETER
A required parameter for the specified action is not supplied.
HTTP Status Code: 400 |
RECEIPT_HANDLE_IS_INVALID
The specified receipt handle isn't valid.
HTTP Status Code: 400 Thrown in ChangeMessageVisibility, DeleteMessage. |
UNDEFINED_QUEUE_URL
Validation error.
Thrown in Source, AddPermission, ChangeMessageVisibility, ChangeMessageVisibilityBatch, DeleteMessage, DeleteMessageBatch, DeleteQueue, GetQueueAttributes, ListDeadLetterSourceQueues, PurgeQueue, RemovePermission, SendMessage, SendMessageBatch, SetQueueAttributes, GetApproximateNumberOfMessages, Read. |
VALIDATION_ERROR
The input fails to satisfy the constraints specified by an AWS service.
HTTP Status Code: 400 |
| Modifier and Type | Method and Description |
|---|---|
static Set<String> |
getErrorCodes() |
static InvalidDataErrorCodes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InvalidDataErrorCodes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InvalidDataErrorCodes INVALID_PARAMETER_COMBINATION
public static final InvalidDataErrorCodes INVALID_PARAMETER_VALUE
public static final InvalidDataErrorCodes VALIDATION_ERROR
public static final InvalidDataErrorCodes AWS_SIMPLE_QUEUE_SERVICE_BATCH_ENTRY_IDS_NOT_DISTINCT
public static final InvalidDataErrorCodes AWS_SIMPLE_QUEUE_SERVICE_BATCH_REQUEST_TOO_LONG
public static final InvalidDataErrorCodes AWS_SIMPLE_QUEUE_SERVICE_EMPTY_BATCH_REQUEST
public static final InvalidDataErrorCodes AWS_SIMPLE_QUEUE_SERVICE_INVALID_BATCH_ENTRY_ID
public static final InvalidDataErrorCodes AWS_SIMPLE_QUEUE_SERVICE_TOO_MANY_ENTRIES_IN_BATCH_REQUEST
public static final InvalidDataErrorCodes AWS_SIMPLE_QUEUE_SERVICE_NON_EXISTENT_QUEUE
public static final InvalidDataErrorCodes INVALID_ATTRIBUTE_NAME
public static final InvalidDataErrorCodes INVALID_MESSAGE_CONTENTS
public static final InvalidDataErrorCodes MISSING_PARAMETER
public static final InvalidDataErrorCodes RECEIPT_HANDLE_IS_INVALID
public static final InvalidDataErrorCodes UNDEFINED_QUEUE_URL
public static InvalidDataErrorCodes[] values()
for (InvalidDataErrorCodes c : InvalidDataErrorCodes.values()) System.out.println(c);
public static InvalidDataErrorCodes valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2022 MuleSoft, Inc.. All rights reserved.