Details
Description
AWS AmazonSQS client has a method called listQueues() which only returns the first 1000 queues (alphabetically sorted). If the AWS account has more than 1k queues, camel would not find the queue/route. AmazonSQS allows pagination in order to get the full list of queues.
https://docs.aws.amazon.com/AWSSimpleQueueService/latest/APIReference/API_ListQueues.html
I think it would be useful to implement the pagination for dynamically built routes.