从快照 ID 获取卷 ID 的方法是什么?

huangapple go评论79阅读模式
英文:

Way to get volume id from snapshot id?

问题

我有一个快照 ID,想知道是否有办法获取该快照所属的卷 ID。

英文:

I have a snapshot id and wanted to know if there was any way to get he volume id the snapshot came from.

答案1

得分: 1

使用DescribeSnapshots API调用。以下是使用Amazon Web Services命令行界面(CLI)的示例:

$ aws ec2 describe-snapshots --snapshot-ids snap-5caa7fb4 --query 'Snapshots[*].VolumeId' --output text
vol-bd9b80c5
英文:

Use the DescribeSnapshots API call. Here's an example using the AWS Command-Line Interface (CLI):

$ aws ec2 describe-snapshots --snapshot-ids snap-5caa7fb4 --query 'Snapshots[*].VolumeId' --output text
vol-bd9b80c5

huangapple
  • 本文由 发表于 2015年8月12日 22:34:57
  • 转载请务必保留本文链接:https://go.coder-hub.com/31968268.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定