将boto2升级到boto3:block_device_mapping结构

时间:2016-07-18 15:47:26

标签: python-3.x upgrade boto boto3

我目前正在使用boto2升级旧代码,我想使用boto3。旧代码的一部分是:

EC2 = boto.ec2.connect_to_region("eu-west-1", **AUTH)
AMI = EC2.get_all_images(owners="297649722856")
amiList = []
for image in AMI:
    ami_snapshot_id = image.block_device_mapping.current_value.snapshot_id
    amiList.append(ami_snapshot_id)

我的问题是如何获取block_device_mapping的snapshot_id。我已经浏览了boto2和boto3的文档,但我还没有找到如何升级它。

有没有办法在boto3中使用相同的功能?

0 个答案:

没有答案