gpt4 book ai didi

python - 使用boto3通过subnet_id查找route_table_id

转载 作者:行者123 更新时间:2023-12-02 07:30:21 25 4
gpt4 key购买 nike

我正在尝试找出如何使用 boto3 根据subnet_id(在 vpc 中)查找route_table_id。 boto3(v1.3.1)、ec2.RouteTableAssociation(id)中有api。在正确的route_table_association_id的情况下,尝试访问资源的属性route_table_id,出现如下异常:

In [19]: rta.route_table_id
---------------------------------------------------------------------------
ResourceLoadException Traceback (most recent call last)
<ipython-input-19-a7f51e66ef03> in <module>()
----> 1 rta.route_table_id

/usr/local/lib/python2.7/site-packages/boto3/resources/factory.pyc in property_loader(self)
341 else:
342 raise ResourceLoadException(
--> 343 '{0} has no load method'.format(self.__class__.__name__))
344
345 return self.meta.data.get(name)

ResourceLoadException: ec2.RouteTableAssociation has no load method

我正在寻找失败原因的线索。

詹姆斯

最佳答案

弄清楚这样做:

response = client.describe_route_tables(
Filters=[
{
'Name': 'association.subnet-id',
'Values': [
source_subnet_id
]
}
]
)


print(response['RouteTables'][0]['Associations'][0]['RouteTableId'])

关于python - 使用boto3通过subnet_id查找route_table_id,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37933608/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com