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"]}}

已提问 1 年前402 查看次数
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
已回答 1 年前
  • Thanks a lot for your help, that worked perfectly. I didn't know about enclosing the JSON within single quotes...

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则