Amazon Inspector · JSON Structure

Inspector Coverage Map Filter Structure

Contains details of a coverage map filter.

Type: object Properties: 3 Required: 2
ComplianceContainer SecurityEC2LambdaSecurityVulnerability Scanning

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

Properties

comparison key value

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-inspector/refs/heads/main/json-structure/inspector-coverage-map-filter-structure.json",
  "name": "CoverageMapFilter",
  "description": "Contains details of a coverage map filter.",
  "type": "object",
  "properties": {
    "comparison": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CoverageMapComparison"
        },
        {
          "description": "The operator to compare coverage on."
        }
      ]
    },
    "key": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NonEmptyString"
        },
        {
          "description": "The tag key associated with the coverage map filter."
        }
      ]
    },
    "value": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NonEmptyString"
        },
        {
          "description": "The tag value associated with the coverage map filter."
        }
      ]
    }
  },
  "required": [
    "comparison",
    "key"
  ]
}