Amazon GuardDuty · Schema

CoverageStatistics

Information about the coverage statistics for a resource.

Anomaly DetectionComplianceMachine LearningMonitoringSecurityThreat Detection

Properties

Name Type Description
CountByResourceType object
CountByCoverageStatus object
View JSON Schema on GitHub

JSON Schema

guardduty-coverage-statistics-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-guardduty/refs/heads/main/json-schema/guardduty-coverage-statistics-schema.json",
  "title": "CoverageStatistics",
  "description": "Information about the coverage statistics for a resource.",
  "type": "object",
  "properties": {
    "CountByResourceType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CountByResourceType"
        },
        {
          "xml": {
            "name": "countByResourceType"
          },
          "description": "Represents coverage statistics for EKS clusters aggregated by resource type."
        }
      ]
    },
    "CountByCoverageStatus": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CountByCoverageStatus"
        },
        {
          "xml": {
            "name": "countByCoverageStatus"
          },
          "description": "Represents coverage statistics for EKS clusters aggregated by coverage status."
        }
      ]
    }
  }
}