ce

Cost Explorer

ManagementAWS
General

General information about the service.

Description

AWS Cost Explorer visualizes and analyzes AWS costs and usage.

Service Namespace

AWS::CE::CostCategory

ARN Pattern

arn:aws:ce::{account}:costcategory/{category-id}

References

Chat

Powered by AI

Talk to this service to learn more about it.

Suggested questions:

Naming

The conventions, rules, and restrictions for naming this service.

Naming Convention

ce-

Length

1-50

Valid Characters

Letters, numbers, hyphens, underscores

Scope

global

Code

Deploy your infrastructure as code using your preferred tooling.

Official DocumentationTerraform
terraform
1resource "aws_ce_cost_category" "main" {
2 name = "ce-${var.environment}"
3 rule_version = "CostCategoryExpression.v1"
4 rule {
5 value = "Production"
6 rule {
7 tags {
8 key = "Environment"
9 values = ["prod"]
10 }
11 }
12 }
13}
Utilities

Utilities to support app deployment or configuration.