Files
cheatsheet-tldr/tldr/aws-ce
2025-12-20 00:20:53 +00:00

42 lines
1.2 KiB
Plaintext

---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# aws ce
> Run cost management operations through the AWS Cost Explorer service.
> More information: <https://docs.aws.amazon.com/cli/latest/reference/ce/>.
- Create anomaly monitor:
`aws ce create-anomaly-monitor --monitor {{monitor_name}} --monitor-type {{monitor_type}}`
- Create anomaly subscription:
`aws ce create-anomaly-subscription --subscription {{subscription_name}} --monitor-arn {{monitor_arn}} --subscribers {{subscribers}}`
- Get anomalies:
`aws ce get-anomalies --monitor-arn {{monitor_arn}} --start-time {{start_time}} --end-time {{end_time}}`
- Get cost and usage:
`aws ce get-cost-and-usage --time-period {{start_date}}/{{end_date}} --granularity {{granularity}} --metrics {{metrics}}`
- Get cost forecast:
`aws ce get-cost-forecast --time-period {{start_date}}/{{end_date}} --granularity {{granularity}} --metric {{metric}}`
- Get reservation utilization:
`aws ce get-reservation-utilization --time-period {{start_date}}/{{end_date}} --granularity {{granularity}}`
- List cost category definitions:
`aws ce list-cost-category-definitions`
- Tag resource:
`aws ce tag-resource --resource-arn {{resource_arn}} --tags {{tags}}`