Amazon Inspector · JSON Structure

Inspector Port Range Filter List Structure

PortRangeFilterList schema

Type: array Properties: 0
ComplianceContainer SecurityEC2LambdaSecurityVulnerability Scanning

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

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-port-range-filter-list-structure.json",
  "name": "PortRangeFilterList",
  "description": "PortRangeFilterList schema",
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "beginInclusive": {
        "allOf": [
          {
            "$ref": "#/components/schemas/Port"
          },
          {
            "description": "The port number the port range begins at."
          }
        ]
      },
      "endInclusive": {
        "allOf": [
          {
            "$ref": "#/components/schemas/Port"
          },
          {
            "description": "The port number the port range ends at."
          }
        ]
      }
    },
    "description": "An object that describes the details of a port range filter."
  }
}