Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 Boto 从 CloudFormation 模板中检索输出列表。我在文档中看到有一个名为boto.cloudformation.stack.Output. 但我认为这是未实现的功能。这目前可能吗?
boto.cloudformation.stack.Output
如果您进行describe_stacks调用,它将返回一个 Stack 对象列表,其中每个对象都有一个outputs属性,即Output对象列表。
describe_stacks
outputs
Output
那是你要找的吗?