CLI get-usage-forecast filtering expression

0

Hi, i'm having a problem on finding the correct way of passing the parameter values to the following filtering expression for the get-usage-forecast. Can anyone help me with knowing how to writing the values for this expression?

aws ce get-usage-forecast --time-period Start=2022-10-07,End=2023-01-07 --granularity MONTHLY --metric USAGE_QUANTITY --filter {"Dimensions": {"Key":"USAGE_TYPE_GROUP, "Values": ["EC2: ELB - Running Hours", "EC2: Running Hours", "RDS: Running Hours"]}}

已提問 2 年前檢視次數 423 次
1 個回答
0
已接受的答案

Your filter has two issues.

  1. The Key value "USAGE_TYPE_GROUP is missing a double-quote at the end.
  2. Since you need to pass the filter as a single value as a JSON, you want to enclose the filter JSON within a single quotes ('').

The working command looks like the following:

aws ce get-usage-forecast --time-period Start=2022-10-22,End=2023-01-07 --granularity MONTHLY --metric USAGE_QUANTITY --filter '{"Dimensions": {"Key":"USAGE_TYPE_GROUP", "Values": ["EC2: ELB - Running Hours", "EC2: Running Hours", "RDS: Running Hours"]}}'
AWS
Taka_M
已回答 2 年前
  • Thanks a lot for your help, that worked perfectly. I didn't know about enclosing the JSON within single quotes...

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南