Created
November 27, 2012 02:47
-
-
Save seungjin/4152070 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
from boto.ec2.autoscale import AutoScaleConnection | |
groupname = '' | |
as_conn = AutoScaleConnection( | |
aws_access_key_id='', | |
aws_secret_access_key='' | |
) | |
group = as_conn.get_all_groups(names=[groupname])[0] | |
for activity in group.get_activities(): | |
print activity |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment