Allan Mullan
Results
12
comments of
Allan Mullan
OK, so I found a solution using jmespath library: ```python queues = sqs.get_paginator('list_queues').paginate( PaginationConfig={ 'PageSize': 1000 } ).build_full_result() queue_urls = jmespath.compile('QueueUrls[]').search(queues) or [] print(queue_urls) ``` This seems to work. This...
I don't understand how this hasn't been complained about more - not being able to properly view complete errors (even encoded) makes it a nightmare to try to fix problems....