MrWebill
MrWebill

Reputation: 37

Is it possible to list AWS instances asynchronously

Good day, I do not know if this is possible from what I understand of the AWS API documentation, but I was wondering is it possible to use multi threading to list all my instances asynchronously. By that I mean can I create a thread to list a number of instances while another thread lists a different set. I have a ridiculously large amount to get through hand waiting for the return from the API call seems for too long. Thank you in advance for any help.

Upvotes: 0

Views: 84

Answers (1)

Julio Faerman
Julio Faerman

Reputation: 13501

Yes, some SDKs do support async operations. See AmazonEC2Client.describeInstancesAsync() for example in Java.

Upvotes: 2

Related Questions