Amazon Config · JSON Structure

Config Resource Count Structure

An object that contains the resource type and the number of resources.

Type: object Properties: 2
AuditingComplianceConfiguration ManagementGovernanceSecurity

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

Properties

resourceType count

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-resource-count-structure.json",
  "name": "ResourceCount",
  "description": "An object that contains the resource type and the number of resources.",
  "type": "object",
  "properties": {
    "resourceType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ResourceType"
        },
        {
          "description": "The resource type (for example, <code>\"AWS::EC2::Instance\"</code>)."
        }
      ]
    },
    "count": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Long"
        },
        {
          "description": "The number of resources."
        }
      ]
    }
  }
}