Amazon Inspector · Schema

ImageLayerAggregation

The details that define an aggregation based on container image layers.

ComplianceContainer SecurityEC2LambdaSecurityVulnerability Scanning

Properties

Name Type Description
layerHashes object
repositories object
resourceIds object
sortBy object
sortOrder object
View JSON Schema on GitHub

JSON Schema

inspector-image-layer-aggregation-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-image-layer-aggregation-schema.json",
  "title": "ImageLayerAggregation",
  "description": "The details that define an aggregation based on container image layers.",
  "type": "object",
  "properties": {
    "layerHashes": {
      "allOf": [
        {
          "$ref": "#/components/schemas/StringFilterList"
        },
        {
          "description": "The hashes associated with the layers."
        }
      ]
    },
    "repositories": {
      "allOf": [
        {
          "$ref": "#/components/schemas/StringFilterList"
        },
        {
          "description": "The repository associated with the container image hosting the layers."
        }
      ]
    },
    "resourceIds": {
      "allOf": [
        {
          "$ref": "#/components/schemas/StringFilterList"
        },
        {
          "description": "The ID of the container image layer."
        }
      ]
    },
    "sortBy": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ImageLayerSortBy"
        },
        {
          "description": "The value to sort results by."
        }
      ]
    },
    "sortOrder": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SortOrder"
        },
        {
          "description": "The order to sort results by."
        }
      ]
    }
  }
}