Using AWS Boto3 to Paginate EC2
What is ec2 pagination? AWS boto3 clients will only return 1000 entries max. That means if you have 1002 ec2 instances and use boto3 client to describe those instances what you get back is a list of 1000 EC2s, not the full 1002. This is the same for other clients… Continue reading