Amazon GuardDuty · Schema

PrivateIpAddressDetails

Contains other private IP address information of the EC2 instance.

Anomaly DetectionComplianceMachine-LearningMonitoringSecurityThreat Detection

Properties

Name Type Description
PrivateDnsName object
PrivateIpAddress object
View JSON Schema on GitHub

JSON Schema

guardduty-private-ip-address-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-private-ip-address-details-schema.json",
  "title": "PrivateIpAddressDetails",
  "description": "Contains other private IP address information of the EC2 instance.",
  "type": "object",
  "properties": {
    "PrivateDnsName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "xml": {
            "name": "privateDnsName"
          },
          "description": "The private DNS name of the EC2 instance."
        }
      ]
    },
    "PrivateIpAddress": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "xml": {
            "name": "privateIpAddress"
          },
          "description": "The private IP address of the EC2 instance."
        }
      ]
    }
  }
}