Amazon GuardDuty · JSON Structure

Guardduty Login Attribute Structure

Information about the login attempts.

Type: object Properties: 4
Anomaly DetectionComplianceMachine LearningMonitoringSecurityThreat Detection

LoginAttribute is a JSON Structure definition published by Amazon GuardDuty, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

User Application FailedLoginAttempts SuccessfulLoginAttempts

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-guardduty/refs/heads/main/json-structure/guardduty-login-attribute-structure.json",
  "name": "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."
        }
      ]
    }
  }
}