boto3中的有效状态列表

时间:2015-08-31 16:36:12

标签: python amazon-web-services boto boto3

我想列出所有没有DELETE_COMPLETE堆栈状态的堆栈

使用boto2非常简单:

import boto
cf = boto.cloudformation.connect_to_region(region)
status_filter = [st for st in cf.valid_states if st != 'DELETE_COMPLETE']
for stack in cf.list_stacks(stack_status_filters=status_filter):
    ...

boto3对每个AWS服务使用botocore和许多service-2.json文件。但我无法找到所有可能的状态标志列表。

我可以在service-2.json(botocore / data / cloudformation / 2010-05-15 / service-2.json)中找到这个,但是如何正确访问此列表?

获取所有堆栈然后跳过在for循环中将DELETE_COMPLETE作为状态的堆栈不是一个选项。

0 个答案:

没有答案