I'm using AWS and pulling snapshots using boto ("The Python interface to Amazon Web Services"). I'm pulling all snapshots using conn.get_all_snapshots()
, but I only want to retrieve the necessary data. I'm using a calendar to view the snapshots, so it would be very helpful if I could only pull the snapshots within the current month I'm viewing.
Is there a restriction (maybe a filter) I can put on the conn.get_all_snapshots()
to only retrieve the snapshots within the month?
Here are boto docs if necessary: http://boto.readthedocs.org/en/latest/ref/ec2.html