Last active
November 16, 2015 21:47
-
-
Save frodopwns/46578394b9091dc5ca82 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#setup ~/.boto first | |
from boto.support.layer1 import SupportConnection | |
conn = SupportConnection() | |
checks = conn.describe_trusted_advisor_checks("en") | |
ids = [c['id'] for c in checks['checks']] | |
summaries = conn.describe_trusted_advisor_check_summaries(ids) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment