Inconsistency with retrieving budget tags API? #3324
|
You can create budgets via: CreateBudgetInput has an input variable for tags: But when describing budgets from the API: The budget object you get has no tags associated with the output: This leads you to ListTagsForResource in budgets: But it takes an ARN for the input: Budgets don't have an arn exposed anywhere? What am I missing? |
Replies: 1 comment
|
I can't find any budget arns exposed in the UI in the billing console, but luckily it seems they do follow similar ARN formats of other resources. arn:aws:budgets::ACCOUNT_ID:budget/BUDGET_NAME Will give you the budget you are looking for and its tags vai the ListTagsForResource API. |
I can't find any budget arns exposed in the UI in the billing console, but luckily it seems they do follow similar ARN formats of other resources.
arn:aws:budgets::ACCOUNT_ID:budget/BUDGET_NAME
Will give you the budget you are looking for and its tags vai the ListTagsForResource API.