ImageScanFindingAggregation

This returns exactly one type of aggregation, based on the filter that Image Builder applies in its API action.

Amazon Web ServicesAutomationContainer ImagesEC2Image BuildingVirtual Machine Images

Properties

Name Type Description
accountAggregation object
imageAggregation object
imagePipelineAggregation object
vulnerabilityIdAggregation object
View JSON Schema on GitHub

JSON Schema

ec2-image-builder-image-scan-finding-aggregation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-ec2-image-builder/refs/heads/main/json-schema/ec2-image-builder-image-scan-finding-aggregation-schema.json",
  "title": "ImageScanFindingAggregation",
  "description": "This returns exactly one type of aggregation, based on the filter that Image Builder applies in its API action.",
  "type": "object",
  "properties": {
    "accountAggregation": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AccountAggregation"
        },
        {
          "description": "Returns an object that contains severity counts based on an account ID."
        }
      ]
    },
    "imageAggregation": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ImageAggregation"
        },
        {
          "description": "Returns an object that contains severity counts based on the Amazon Resource Name (ARN) for a specific image."
        }
      ]
    },
    "imagePipelineAggregation": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ImagePipelineAggregation"
        },
        {
          "description": "Returns an object that contains severity counts based on an image pipeline ARN."
        }
      ]
    },
    "vulnerabilityIdAggregation": {
      "allOf": [
        {
          "$ref": "#/components/schemas/VulnerabilityIdAggregation"
        },
        {
          "description": "Returns an object that contains severity counts based on vulnerability ID."
        }
      ]
    }
  }
}