给定一个VPC ID,找到连接到它的所有网关。
我试图在这里使用过滤器,但我总是得到例外:
gws = conn.get_all_internet_gateways(filters={'attachments': vpc.id})
gws = conn.get_all_internet_gateways(filters={'InternetGatewayAttachment': vpc.id})
这里有哪些正确的过滤器?
此上下文中允许的过滤器是什么?
关于这个主题的文档非常缺乏。
答案 0 :(得分:1)
DescribeInternetGateways请求的AWS文档显示了可用的过滤器。我想你想要:
gws = conn.get_all_internet_gateways(filters={'attachment.vpc-id': vpc.id})