{ "$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, \"AWS::EC2::Instance\")." } ] }, "count": { "allOf": [ { "$ref": "#/components/schemas/Long" }, { "description": "The number of resources." } ] } } }