Amazon GuardDuty · Schema

RdsDbUserDetails

Contains information about the user and authentication details for a database instance involved in the finding.

Anomaly DetectionComplianceMachine-LearningMonitoringSecurityThreat Detection

Properties

Name Type Description
User object
Application object
Database object
Ssl object
AuthMethod object
View JSON Schema on GitHub

JSON Schema

guardduty-rds-db-user-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-rds-db-user-details-schema.json",
  "title": "RdsDbUserDetails",
  "description": "Contains information about the user and authentication details for a database instance involved in the finding.",
  "type": "object",
  "properties": {
    "User": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "xml": {
            "name": "user"
          },
          "description": "The user name used in the anomalous login attempt."
        }
      ]
    },
    "Application": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "xml": {
            "name": "application"
          },
          "description": "The application name used in the anomalous login attempt."
        }
      ]
    },
    "Database": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "xml": {
            "name": "database"
          },
          "description": "The name of the database instance involved in the anomalous login attempt."
        }
      ]
    },
    "Ssl": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "xml": {
            "name": "ssl"
          },
          "description": "The version of the Secure Socket Layer (SSL) used for the network."
        }
      ]
    },
    "AuthMethod": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "xml": {
            "name": "authMethod"
          },
          "description": "The authentication method used by the user involved in the finding."
        }
      ]
    }
  }
}