Amazon Macie · Schema

IamUser

Provides information about an Identity and Access Management (IAM) user who performed an action on an affected resource.

Data SecuritySensitive DataPrivacyComplianceMachine-LearningS3

Properties

Name Type Description
accountId object
arn object
principalId object
userName object
View JSON Schema on GitHub

JSON Schema

amazon-macie-iam-user-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-macie/refs/heads/main/json-schema/amazon-macie-iam-user-schema.json",
  "title": "IamUser",
  "description": "Provides information about an Identity and Access Management (IAM) user who performed an action on an affected resource.",
  "type": "object",
  "properties": {
    "accountId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "description": "The unique identifier for the Amazon Web Services account that's associated with the IAM user who performed the action."
        }
      ]
    },
    "arn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the principal that performed the action. The last section of the ARN contains the name of the user who performed the action."
        }
      ]
    },
    "principalId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "description": "The unique identifier for the IAM user who performed the action."
        }
      ]
    },
    "userName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "description": "The username of the IAM user who performed the action."
        }
      ]
    }
  }
}