Reputation: 1295
I have a volume and many snapshots have been created out of it. How to list all the snapshots of that particular volume?
Upvotes: 1
Views: 1092
Reputation: 3125
aws ec2 describe-snapshots --filter Name=volume-id,Values=vol-xyz
See http://docs.aws.amazon.com/cli/latest/reference/ec2/describe-snapshots.html for more information.
Upvotes: 5