Amazon GuardDuty · Schema

LoginAttribute

Information about the login attempts.

Anomaly DetectionComplianceMachine LearningMonitoringSecurityThreat Detection

Properties

Name Type Description
User object
Application object
FailedLoginAttempts object
SuccessfulLoginAttempts object
View JSON Schema on GitHub

JSON Schema

guardduty-login-attribute-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-login-attribute-schema.json",
  "title": "LoginAttribute",
  "description": "Information about the login attempts.",
  "type": "object",
  "properties": {
    "User": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "xml": {
            "name": "user"
          },
          "description": "Indicates the user name which attempted to log in."
        }
      ]
    },
    "Application": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "xml": {
            "name": "application"
          },
          "description": "Indicates the application name used to attempt log in."
        }
      ]
    },
    "FailedLoginAttempts": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Integer"
        },
        {
          "xml": {
            "name": "failedLoginAttempts"
          },
          "description": "Represents the sum of failed (unsuccessful) login attempts made to establish a connection to the database instance."
        }
      ]
    },
    "SuccessfulLoginAttempts": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Integer"
        },
        {
          "xml": {
            "name": "successfulLoginAttempts"
          },
          "description": "Represents the sum of successful connections (a correct combination of login attributes) made to the database instance by the actor."
        }
      ]
    }
  }
}