我想列出所有没有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作为状态的堆栈不是一个选项。