我试图使用boto获取路由表的内容和acl,如Destination,target ...等。我能够获取ID而非内容,请提供一种方法来解决此问题。
答案 0 :(得分:2)
要检索数据,您需要按照以下步骤操作:
from boto.vpc import VPCConnection
康恩= boto.vpc.connect_to_region( “AP-东南-1”)
C = conn.get_all_route_tables()
c中的c1:
for a in c1.routes:
print a.destination_cidr_block
print a.instance_id
print a.gateway_id
print a.state
print a.dry_run
如果您在第4点感到困惑,可以在此处看到:http://pydoc.net/Python/boto/2.1.1/boto.vpc.routetable/ 希望它有所帮助!