github.com/aavshr/aws-sdk-go@v1.41.3/service/sqs/errors.go (about) 1 // Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. 2 3 package sqs 4 5 const ( 6 7 // ErrCodeBatchEntryIdsNotDistinct for service response error code 8 // "AWS.SimpleQueueService.BatchEntryIdsNotDistinct". 9 // 10 // Two or more batch entries in the request have the same Id. 11 ErrCodeBatchEntryIdsNotDistinct = "AWS.SimpleQueueService.BatchEntryIdsNotDistinct" 12 13 // ErrCodeBatchRequestTooLong for service response error code 14 // "AWS.SimpleQueueService.BatchRequestTooLong". 15 // 16 // The length of all the messages put together is more than the limit. 17 ErrCodeBatchRequestTooLong = "AWS.SimpleQueueService.BatchRequestTooLong" 18 19 // ErrCodeEmptyBatchRequest for service response error code 20 // "AWS.SimpleQueueService.EmptyBatchRequest". 21 // 22 // The batch request doesn't contain any entries. 23 ErrCodeEmptyBatchRequest = "AWS.SimpleQueueService.EmptyBatchRequest" 24 25 // ErrCodeInvalidAttributeName for service response error code 26 // "InvalidAttributeName". 27 // 28 // The specified attribute doesn't exist. 29 ErrCodeInvalidAttributeName = "InvalidAttributeName" 30 31 // ErrCodeInvalidBatchEntryId for service response error code 32 // "AWS.SimpleQueueService.InvalidBatchEntryId". 33 // 34 // The Id of a batch entry in a batch request doesn't abide by the specification. 35 ErrCodeInvalidBatchEntryId = "AWS.SimpleQueueService.InvalidBatchEntryId" 36 37 // ErrCodeInvalidIdFormat for service response error code 38 // "InvalidIdFormat". 39 // 40 // The specified receipt handle isn't valid for the current version. 41 ErrCodeInvalidIdFormat = "InvalidIdFormat" 42 43 // ErrCodeInvalidMessageContents for service response error code 44 // "InvalidMessageContents". 45 // 46 // The message contains characters outside the allowed set. 47 ErrCodeInvalidMessageContents = "InvalidMessageContents" 48 49 // ErrCodeMessageNotInflight for service response error code 50 // "AWS.SimpleQueueService.MessageNotInflight". 51 // 52 // The specified message isn't in flight. 53 ErrCodeMessageNotInflight = "AWS.SimpleQueueService.MessageNotInflight" 54 55 // ErrCodeOverLimit for service response error code 56 // "OverLimit". 57 // 58 // The specified action violates a limit. For example, ReceiveMessage returns 59 // this error if the maximum number of inflight messages is reached and AddPermission 60 // returns this error if the maximum number of permissions for the queue is 61 // reached. 62 ErrCodeOverLimit = "OverLimit" 63 64 // ErrCodePurgeQueueInProgress for service response error code 65 // "AWS.SimpleQueueService.PurgeQueueInProgress". 66 // 67 // Indicates that the specified queue previously received a PurgeQueue request 68 // within the last 60 seconds (the time it can take to delete the messages in 69 // the queue). 70 ErrCodePurgeQueueInProgress = "AWS.SimpleQueueService.PurgeQueueInProgress" 71 72 // ErrCodeQueueDeletedRecently for service response error code 73 // "AWS.SimpleQueueService.QueueDeletedRecently". 74 // 75 // You must wait 60 seconds after deleting a queue before you can create another 76 // queue with the same name. 77 ErrCodeQueueDeletedRecently = "AWS.SimpleQueueService.QueueDeletedRecently" 78 79 // ErrCodeQueueDoesNotExist for service response error code 80 // "AWS.SimpleQueueService.NonExistentQueue". 81 // 82 // The specified queue doesn't exist. 83 ErrCodeQueueDoesNotExist = "AWS.SimpleQueueService.NonExistentQueue" 84 85 // ErrCodeQueueNameExists for service response error code 86 // "QueueAlreadyExists". 87 // 88 // A queue with this name already exists. Amazon SQS returns this error only 89 // if the request includes attributes whose values differ from those of the 90 // existing queue. 91 ErrCodeQueueNameExists = "QueueAlreadyExists" 92 93 // ErrCodeReceiptHandleIsInvalid for service response error code 94 // "ReceiptHandleIsInvalid". 95 // 96 // The specified receipt handle isn't valid. 97 ErrCodeReceiptHandleIsInvalid = "ReceiptHandleIsInvalid" 98 99 // ErrCodeTooManyEntriesInBatchRequest for service response error code 100 // "AWS.SimpleQueueService.TooManyEntriesInBatchRequest". 101 // 102 // The batch request contains more entries than permissible. 103 ErrCodeTooManyEntriesInBatchRequest = "AWS.SimpleQueueService.TooManyEntriesInBatchRequest" 104 105 // ErrCodeUnsupportedOperation for service response error code 106 // "AWS.SimpleQueueService.UnsupportedOperation". 107 // 108 // Error code 400. Unsupported operation. 109 ErrCodeUnsupportedOperation = "AWS.SimpleQueueService.UnsupportedOperation" 110 )