我有一个 AMI 列表,我通过创建 boto 连接获得:
conn_eu = boto.ec2.connect_to_region('eu-west-1')
images = conn_eu.get_all_images(owners=['me'])
我希望能够看到这些 AMI 的属性。属性,例如它们的描述、名称和图像 ID。
我有一个 AMI 列表,我通过创建 boto 连接获得:
conn_eu = boto.ec2.connect_to_region('eu-west-1')
images = conn_eu.get_all_images(owners=['me'])
我希望能够看到这些 AMI 的属性。属性,例如它们的描述、名称和图像 ID。
查看image.py后,我意识到我可以这样做: image.id 获取图像 id 和 image.description 获取图像描述
以下是每个打印 Python 类的所有属性的boto.ec2.image.Image对象的所有属性:
from boto.ec2 import connect_to_region
ec2_connection = connect_to_region("us-west-2",
aws_access_key_id="...",
aws_secret_access_key="...")
images = ec2_connection.get_all_images(image_ids=["ami-xxxxxxxxx"])
for k in vars(images[0]).keys():
print "{0}".format(k)
(或者,也可以使用打印值):
for k,v in vars(images[0]).iteritems():
print "{0}:{1}".format(k,v)
root_device_type
ramdisk_id
id
owner_alias
billing_products
tags
platform
state
location
type
virtualization_type
sriov_net_support
architecture
description
block_device_mapping
kernel_id
owner_id
is_public
instance_lifecycle
creationDate
name
hypervisor
region
item
connection
root_device_name
ownerId
product_codes