作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试找出如何使用 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/
我在版本12.24中运行Terraform Plan时遇到错误:属性值类型不正确。 Error: Incorrect attribute value type on .terraform/modu
我是一名优秀的程序员,十分优秀!