1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.ko/common/aws-ce.md

37 lines
1.2 KiB
Markdown
Raw Normal View History

# aws ce
2024-09-10 02:19:22 +09:00
> AWS Cost Explorer 서비스를 통한 비용 관리 작업 수행합니다.
> 더 많은 정보: <https://awscli.amazonaws.com/v2/documentation/api/latest/reference/ce/index.html>.
2024-09-10 02:19:22 +09:00
- 이상 모니터 생성:
2024-09-10 02:19:22 +09:00
`aws ce create-anomaly-monitor --monitor {{모니터_이름}} --monitor-type {{모니터_유형}}`
2024-09-10 02:19:22 +09:00
- 이상 구독 생성:
2024-09-10 02:19:22 +09:00
`aws ce create-anomaly-subscription --subscription {{구독_이름}} --monitor-arn {{모니터_arn}} --subscribers {{구독자}}`
2024-09-10 02:19:22 +09:00
- 이상 조회:
2024-09-10 02:19:22 +09:00
`aws ce get-anomalies --monitor-arn {{모니터_arn}} --start-time {{시작_날짜}} --end-time {{종료_날짜}}`
2024-09-10 02:19:22 +09:00
- 비용 및 사용량 조회:
2024-09-10 02:19:22 +09:00
`aws ce get-cost-and-usage --time-period {{시작_날짜}}/{{종료_날짜}} --granularity {{세분화}} --metrics {{메트릭}}`
2024-09-10 02:19:22 +09:00
- 비용 예측 조회:
2024-09-10 02:19:22 +09:00
`aws ce get-cost-forecast --time-period {{시작_날짜}}/{{종료_날짜}} --granularity {{세분화}} --metric {{메트릭}}`
2024-09-10 02:19:22 +09:00
- 예약 사용량 조회:
2024-09-10 02:19:22 +09:00
`aws ce get-reservation-utilization --time-period {{시작_날짜}}/{{종료_날짜}} --granularity {{세분화}}`
2024-09-10 02:19:22 +09:00
- 비용 카테고리 정의 목록 조회:
2024-09-10 02:19:22 +09:00
`aws ce list-cost-category-definitions`
2024-09-10 02:19:22 +09:00
- 리소스 태깅:
2024-09-10 02:19:22 +09:00
`aws ce tag-resource --resource-arn {{리소스_arn}} --tags {{태그}}`