我过去曾使用boto3查找所有图像not public
,以便将我返回的图像列表从数千个减少到一个可管理的数目。
但是,我不知道如何以这种方式过滤EBS快照。
我尝试了以下
ec2.describe_snapshots(OwnerIds=self)
但是,OwnerIds仅接受一个ID列表。
我一直在阅读以下文档:describe_snapshots,它指出
但我无法确定此
self
的用途。有人可以帮忙吗?谢谢。
最佳答案
尝试:
client.describe_snapshots(OwnerIds=['self'])
或者您可以指定您的帐号/ID:
client.describe_snapshots(OwnerIds=['123456736123'])
两者是等效的。