【发布时间】:2012-12-19 05:51:29
【问题描述】:
我正在尝试使用 Boto 从 CloudFormation 模板中检索输出列表。我在文档中看到有一个名为boto.cloudformation.stack.Output 的对象。但我认为这是未实现的功能。目前可以吗?
【问题讨论】:
标签: python amazon-web-services boto amazon-cloudformation
我正在尝试使用 Boto 从 CloudFormation 模板中检索输出列表。我在文档中看到有一个名为boto.cloudformation.stack.Output 的对象。但我认为这是未实现的功能。目前可以吗?
【问题讨论】:
标签: python amazon-web-services boto amazon-cloudformation
如果您进行describe_stacks 调用,它将返回一个 Stack 对象列表,其中每个对象都有一个 outputs 属性,该属性是一个 Output 对象列表。
这就是你要找的吗?
【讨论】:
list_stacks。