标签: python amazon-web-services boto amazon-cloudformation
我尝试使用Boto从CloudFormation模板中检索输出列表。我在文档中看到有一个名为boto.cloudformation.stack.Output的对象。但我认为这是未实现的功能。这目前可能吗?
boto.cloudformation.stack.Output
答案 0 :(得分:7)
如果你进行describe_stacks调用,它将返回一个Stack对象列表,每个对象都有outputs属性,这是Output个对象的列表。
describe_stacks
outputs
Output
这就是你要找的东西吗?