Reputation: 1
Is it possible to get the OS type from an AWS AMI via Boto?
ie. MSWinSQLWeb, RHEL, SLES, LINUX/UNIX, etc....?
-RBL
Upvotes: 0
Views: 723
Reputation: 8624
Not exactly sure what you are trying to achieve, but this may be it:
boto.ec2.get_only_instances()
The returned Instance
objects will have some informative properties, like:
Upvotes: 1