1 Answer
0
Accepted Answer
Your filter has two issues.
- The Key value
"USAGE_TYPE_GROUP
is missing a double-quote at the end. - 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"]}}'
answered 5 months ago
Relevant content
- asked 6 months ago
- asked 7 months ago
- asked 8 months ago
- asked 3 months ago
- AWS OFFICIALUpdated 7 months ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated 8 months ago
- AWS OFFICIALUpdated a year ago
Thanks a lot for your help, that worked perfectly. I didn't know about enclosing the JSON within single quotes...