我想删除AMI以及与之关联的所有快照。根据文件:
deregister_image(image_id, delete_snapshot=True)
Unregister an AMI.
Parameters:
image_id (string) – the ID of the Image to unregister
delete_snapshot (bool) – Set to True if we should delete the snapshot associated with an EBS volume mounted at /dev/sda1
这是否意味着这只会删除根EBS卷的快照?其他EBS卷的快照怎么样?如何删除它们?
或者我对快照的概念完全错了吗?所有EBS支持的设备只有一个快照吗?
答案 0 :(得分:0)
如果您最初注册AMI时提供了snapshot_id
参数作为图片的根设备,delete_snapshot
上的unregister_image
参数可让您选择删除AMI未注册时的快照。
您要删除哪些“与AMI相关联的”快照?