Amazon Config · JSON Structure

Config Grouped Resource Count Structure

The count of resources that are grouped by the group name.

Type: object Properties: 2 Required: 2
AuditingComplianceConfiguration ManagementGovernanceSecurity

GroupedResourceCount is a JSON Structure definition published by Amazon Config, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

GroupName ResourceCount

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-config/refs/heads/main/json-structure/config-grouped-resource-count-structure.json",
  "name": "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"
  ]
}