Amazon GuardDuty · Schema

LocalIpDetails

Contains information about the local IP address of the connection.

Anomaly DetectionComplianceMachine LearningMonitoringSecurityThreat Detection

Properties

Name Type Description
IpAddressV4 object
View JSON Schema on GitHub

JSON Schema

guardduty-local-ip-details-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-guardduty/refs/heads/main/json-schema/guardduty-local-ip-details-schema.json",
  "title": "LocalIpDetails",
  "description": "Contains information about the local IP address of the connection.",
  "type": "object",
  "properties": {
    "IpAddressV4": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "xml": {
            "name": "ipAddressV4"
          },
          "description": "The IPv4 local address of the connection."
        }
      ]
    }
  }
}