Balasekhar Nelli
Balasekhar Nelli

Reputation: 1295

AWS: How to list Snapshots which are created from a particular volume via AWSCLI?

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

Answers (1)

RaviTezu
RaviTezu

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

Related Questions