标签: amazon-web-services aws-sdk amazon-cloudformation boto3
我正在尝试使用Boto3在我的AWS帐户上获取分配给cloudformation堆栈的标签及其值。我能够检索所有cloudformation堆栈,输出和其他属性的列表,但无法检索标签。
答案 0 :(得分:2)
根据API documentation,describe-stacks端点具有一个Tags字段,该字段是包含Key和Value字段的对象的列表。 Boto公开了这些:
Tags
Key
Value
https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/cloudformation.html#CloudFormation.Client.describe_stacks
如果response.Stacks[*].Tags是一个空列表,则您的堆栈没有标签。
response.Stacks[*].Tags