Created
October 3, 2009 20:19
-
-
Save hdknr/200843 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
| def create_snapshot(self, volume_id,descripton=""): | |
| """ | |
| by HDKNR.COM | |
| description : some comment or note for a snapshot | |
| http://docs.amazonwebservices.com/AWSEC2/latest/APIReference/ApiReference-query-CreateSnapshot.html | |
| """ | |
| paramcription = {'VolumeId' : volume_id, 'Description' : description} | |
| return self.get_object('CreateSnapshot', params, Snapshot) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment