├── .gitattributes ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json └── src ├── Enum ├── MessageSystemAttributeName.php ├── MessageSystemAttributeNameForSends.php └── QueueAttributeName.php ├── Exception ├── BatchEntryIdsNotDistinctException.php ├── BatchRequestTooLongException.php ├── EmptyBatchRequestException.php ├── InvalidAddressException.php ├── InvalidAttributeNameException.php ├── InvalidAttributeValueException.php ├── InvalidBatchEntryIdException.php ├── InvalidIdFormatException.php ├── InvalidMessageContentsException.php ├── InvalidSecurityException.php ├── KmsAccessDeniedException.php ├── KmsDisabledException.php ├── KmsInvalidKeyUsageException.php ├── KmsInvalidStateException.php ├── KmsNotFoundException.php ├── KmsOptInRequiredException.php ├── KmsThrottledException.php ├── MessageNotInflightException.php ├── OverLimitException.php ├── PurgeQueueInProgressException.php ├── QueueDeletedRecentlyException.php ├── QueueDoesNotExistException.php ├── QueueNameExistsException.php ├── ReceiptHandleIsInvalidException.php ├── RequestThrottledException.php ├── TooManyEntriesInBatchRequestException.php └── UnsupportedOperationException.php ├── Input ├── AddPermissionRequest.php ├── ChangeMessageVisibilityBatchRequest.php ├── ChangeMessageVisibilityRequest.php ├── CreateQueueRequest.php ├── DeleteMessageBatchRequest.php ├── DeleteMessageRequest.php ├── DeleteQueueRequest.php ├── GetQueueAttributesRequest.php ├── GetQueueUrlRequest.php ├── ListQueuesRequest.php ├── PurgeQueueRequest.php ├── ReceiveMessageRequest.php ├── SendMessageBatchRequest.php └── SendMessageRequest.php ├── Result ├── ChangeMessageVisibilityBatchResult.php ├── CreateQueueResult.php ├── DeleteMessageBatchResult.php ├── GetQueueAttributesResult.php ├── GetQueueUrlResult.php ├── ListQueuesResult.php ├── QueueExistsWaiter.php ├── ReceiveMessageResult.php ├── SendMessageBatchResult.php └── SendMessageResult.php ├── SqsClient.php └── ValueObject ├── BatchResultErrorEntry.php ├── ChangeMessageVisibilityBatchRequestEntry.php ├── ChangeMessageVisibilityBatchResultEntry.php ├── DeleteMessageBatchRequestEntry.php ├── DeleteMessageBatchResultEntry.php ├── Message.php ├── MessageAttributeValue.php ├── MessageSystemAttributeValue.php ├── SendMessageBatchRequestEntry.php └── SendMessageBatchResultEntry.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/.gitattributes -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/composer.json -------------------------------------------------------------------------------- /src/Enum/MessageSystemAttributeName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/Enum/MessageSystemAttributeName.php -------------------------------------------------------------------------------- /src/Enum/MessageSystemAttributeNameForSends.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/Enum/MessageSystemAttributeNameForSends.php -------------------------------------------------------------------------------- /src/Enum/QueueAttributeName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/Enum/QueueAttributeName.php -------------------------------------------------------------------------------- /src/Exception/BatchEntryIdsNotDistinctException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/Exception/BatchEntryIdsNotDistinctException.php -------------------------------------------------------------------------------- /src/Exception/BatchRequestTooLongException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/Exception/BatchRequestTooLongException.php -------------------------------------------------------------------------------- /src/Exception/EmptyBatchRequestException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/Exception/EmptyBatchRequestException.php -------------------------------------------------------------------------------- /src/Exception/InvalidAddressException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/Exception/InvalidAddressException.php -------------------------------------------------------------------------------- /src/Exception/InvalidAttributeNameException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/Exception/InvalidAttributeNameException.php -------------------------------------------------------------------------------- /src/Exception/InvalidAttributeValueException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/Exception/InvalidAttributeValueException.php -------------------------------------------------------------------------------- /src/Exception/InvalidBatchEntryIdException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/Exception/InvalidBatchEntryIdException.php -------------------------------------------------------------------------------- /src/Exception/InvalidIdFormatException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/Exception/InvalidIdFormatException.php -------------------------------------------------------------------------------- /src/Exception/InvalidMessageContentsException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/Exception/InvalidMessageContentsException.php -------------------------------------------------------------------------------- /src/Exception/InvalidSecurityException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/Exception/InvalidSecurityException.php -------------------------------------------------------------------------------- /src/Exception/KmsAccessDeniedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/Exception/KmsAccessDeniedException.php -------------------------------------------------------------------------------- /src/Exception/KmsDisabledException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/Exception/KmsDisabledException.php -------------------------------------------------------------------------------- /src/Exception/KmsInvalidKeyUsageException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/Exception/KmsInvalidKeyUsageException.php -------------------------------------------------------------------------------- /src/Exception/KmsInvalidStateException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/Exception/KmsInvalidStateException.php -------------------------------------------------------------------------------- /src/Exception/KmsNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/Exception/KmsNotFoundException.php -------------------------------------------------------------------------------- /src/Exception/KmsOptInRequiredException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/Exception/KmsOptInRequiredException.php -------------------------------------------------------------------------------- /src/Exception/KmsThrottledException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/Exception/KmsThrottledException.php -------------------------------------------------------------------------------- /src/Exception/MessageNotInflightException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/Exception/MessageNotInflightException.php -------------------------------------------------------------------------------- /src/Exception/OverLimitException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/Exception/OverLimitException.php -------------------------------------------------------------------------------- /src/Exception/PurgeQueueInProgressException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/Exception/PurgeQueueInProgressException.php -------------------------------------------------------------------------------- /src/Exception/QueueDeletedRecentlyException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/Exception/QueueDeletedRecentlyException.php -------------------------------------------------------------------------------- /src/Exception/QueueDoesNotExistException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/Exception/QueueDoesNotExistException.php -------------------------------------------------------------------------------- /src/Exception/QueueNameExistsException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/Exception/QueueNameExistsException.php -------------------------------------------------------------------------------- /src/Exception/ReceiptHandleIsInvalidException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/Exception/ReceiptHandleIsInvalidException.php -------------------------------------------------------------------------------- /src/Exception/RequestThrottledException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/Exception/RequestThrottledException.php -------------------------------------------------------------------------------- /src/Exception/TooManyEntriesInBatchRequestException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/Exception/TooManyEntriesInBatchRequestException.php -------------------------------------------------------------------------------- /src/Exception/UnsupportedOperationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/Exception/UnsupportedOperationException.php -------------------------------------------------------------------------------- /src/Input/AddPermissionRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/Input/AddPermissionRequest.php -------------------------------------------------------------------------------- /src/Input/ChangeMessageVisibilityBatchRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/Input/ChangeMessageVisibilityBatchRequest.php -------------------------------------------------------------------------------- /src/Input/ChangeMessageVisibilityRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/Input/ChangeMessageVisibilityRequest.php -------------------------------------------------------------------------------- /src/Input/CreateQueueRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/Input/CreateQueueRequest.php -------------------------------------------------------------------------------- /src/Input/DeleteMessageBatchRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/Input/DeleteMessageBatchRequest.php -------------------------------------------------------------------------------- /src/Input/DeleteMessageRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/Input/DeleteMessageRequest.php -------------------------------------------------------------------------------- /src/Input/DeleteQueueRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/Input/DeleteQueueRequest.php -------------------------------------------------------------------------------- /src/Input/GetQueueAttributesRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/Input/GetQueueAttributesRequest.php -------------------------------------------------------------------------------- /src/Input/GetQueueUrlRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/Input/GetQueueUrlRequest.php -------------------------------------------------------------------------------- /src/Input/ListQueuesRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/Input/ListQueuesRequest.php -------------------------------------------------------------------------------- /src/Input/PurgeQueueRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/Input/PurgeQueueRequest.php -------------------------------------------------------------------------------- /src/Input/ReceiveMessageRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/Input/ReceiveMessageRequest.php -------------------------------------------------------------------------------- /src/Input/SendMessageBatchRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/Input/SendMessageBatchRequest.php -------------------------------------------------------------------------------- /src/Input/SendMessageRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/Input/SendMessageRequest.php -------------------------------------------------------------------------------- /src/Result/ChangeMessageVisibilityBatchResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/Result/ChangeMessageVisibilityBatchResult.php -------------------------------------------------------------------------------- /src/Result/CreateQueueResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/Result/CreateQueueResult.php -------------------------------------------------------------------------------- /src/Result/DeleteMessageBatchResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/Result/DeleteMessageBatchResult.php -------------------------------------------------------------------------------- /src/Result/GetQueueAttributesResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/Result/GetQueueAttributesResult.php -------------------------------------------------------------------------------- /src/Result/GetQueueUrlResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/Result/GetQueueUrlResult.php -------------------------------------------------------------------------------- /src/Result/ListQueuesResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/Result/ListQueuesResult.php -------------------------------------------------------------------------------- /src/Result/QueueExistsWaiter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/Result/QueueExistsWaiter.php -------------------------------------------------------------------------------- /src/Result/ReceiveMessageResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/Result/ReceiveMessageResult.php -------------------------------------------------------------------------------- /src/Result/SendMessageBatchResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/Result/SendMessageBatchResult.php -------------------------------------------------------------------------------- /src/Result/SendMessageResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/Result/SendMessageResult.php -------------------------------------------------------------------------------- /src/SqsClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/SqsClient.php -------------------------------------------------------------------------------- /src/ValueObject/BatchResultErrorEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/ValueObject/BatchResultErrorEntry.php -------------------------------------------------------------------------------- /src/ValueObject/ChangeMessageVisibilityBatchRequestEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/ValueObject/ChangeMessageVisibilityBatchRequestEntry.php -------------------------------------------------------------------------------- /src/ValueObject/ChangeMessageVisibilityBatchResultEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/ValueObject/ChangeMessageVisibilityBatchResultEntry.php -------------------------------------------------------------------------------- /src/ValueObject/DeleteMessageBatchRequestEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/ValueObject/DeleteMessageBatchRequestEntry.php -------------------------------------------------------------------------------- /src/ValueObject/DeleteMessageBatchResultEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/ValueObject/DeleteMessageBatchResultEntry.php -------------------------------------------------------------------------------- /src/ValueObject/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/ValueObject/Message.php -------------------------------------------------------------------------------- /src/ValueObject/MessageAttributeValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/ValueObject/MessageAttributeValue.php -------------------------------------------------------------------------------- /src/ValueObject/MessageSystemAttributeValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/ValueObject/MessageSystemAttributeValue.php -------------------------------------------------------------------------------- /src/ValueObject/SendMessageBatchRequestEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/ValueObject/SendMessageBatchRequestEntry.php -------------------------------------------------------------------------------- /src/ValueObject/SendMessageBatchResultEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/async-aws/sqs/HEAD/src/ValueObject/SendMessageBatchResultEntry.php --------------------------------------------------------------------------------