Amazon Inspector · JSON Structure

Inspector Ami Aggregation Structure

The details that define an aggregation based on Amazon machine images (AMIs).

Type: object Properties: 3
ComplianceContainer SecurityEC2LambdaSecurityVulnerability Scanning

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

Properties

amis sortBy sortOrder

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-ami-aggregation-structure.json",
  "name": "AmiAggregation",
  "description": "The details that define an aggregation based on Amazon machine images (AMIs).",
  "type": "object",
  "properties": {
    "amis": {
      "allOf": [
        {
          "$ref": "#/components/schemas/StringFilterList"
        },
        {
          "description": "The IDs of AMIs to aggregate findings for."
        }
      ]
    },
    "sortBy": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AmiSortBy"
        },
        {
          "description": "The value to sort results by."
        }
      ]
    },
    "sortOrder": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SortOrder"
        },
        {
          "description": "The order to sort results by."
        }
      ]
    }
  }
}