Amazon Inspector · Schema

Counts

a structure that contains information on the count of resources within a group.

ComplianceContainer SecurityEC2LambdaSecurityVulnerability Scanning

Properties

Name Type Description
count object
groupKey object
View JSON Schema on GitHub

JSON Schema

inspector-counts-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-inspector/refs/heads/main/json-schema/inspector-counts-schema.json",
  "title": "Counts",
  "description": "a structure that contains information on the count of resources within a group.",
  "type": "object",
  "properties": {
    "count": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AggCounts"
        },
        {
          "description": "The number of resources."
        }
      ]
    },
    "groupKey": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GroupKey"
        },
        {
          "description": "The key associated with this group"
        }
      ]
    }
  }
}