英文:
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
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论