Amazon GuardDuty · Schema

AccessKeyDetails

Contains information about the access keys.

Anomaly DetectionComplianceMachine LearningMonitoringSecurityThreat Detection

Properties

Name Type Description
AccessKeyId object
PrincipalId object
UserName object
UserType object
View JSON Schema on GitHub

JSON Schema

guardduty-access-key-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-access-key-details-schema.json",
  "title": "AccessKeyDetails",
  "description": "Contains information about the access keys.",
  "type": "object",
  "properties": {
    "AccessKeyId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "xml": {
            "name": "accessKeyId"
          },
          "description": "The access key ID of the user."
        }
      ]
    },
    "PrincipalId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "xml": {
            "name": "principalId"
          },
          "description": "The principal ID of the user."
        }
      ]
    },
    "UserName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "xml": {
            "name": "userName"
          },
          "description": "The name of the user."
        }
      ]
    },
    "UserType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "xml": {
            "name": "userType"
          },
          "description": "The type of the user."
        }
      ]
    }
  }
}