{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-config/refs/heads/main/json-schema/config-grouped-resource-count-schema.json",
"title": "GroupedResourceCount",
"description": "The count of resources that are grouped by the group name.",
"type": "object",
"properties": {
"GroupName": {
"allOf": [
{
"$ref": "#/components/schemas/StringWithCharLimit256"
},
{
"description": "The name of the group that can be region, account ID, or resource type. For example, region1, region2 if the region was chosen as <code>GroupByKey</code>."
}
]
},
"ResourceCount": {
"allOf": [
{
"$ref": "#/components/schemas/Long"
},
{
"description": "The number of resources in the group."
}
]
}
},
"required": [
"GroupName",
"ResourceCount"
]
}