如何使用boto3获取分配给cloudformation堆栈的标签?

时间:2019-07-08 17:36:44

标签: amazon-web-services aws-sdk amazon-cloudformation boto3

我正在尝试使用Boto3在我的AWS帐户上获取分配给cloudformation堆栈的标签及其值。我能够检索所有cloudformation堆栈,输出和其他属性的列表,但无法检索标签。

1 个答案:

答案 0 :(得分:2)

根据API documentation,describe-stacks端点具有一个Tags字段,该字段是包含KeyValue字段的对象的列表。 Boto公开了这些:

https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/cloudformation.html#CloudFormation.Client.describe_stacks

如果response.Stacks[*].Tags是一个空列表,则您的堆栈没有标签。