Amazon GuardDuty · Schema

IamInstanceProfile

Contains information about the EC2 instance profile.

Anomaly DetectionComplianceMachine LearningMonitoringSecurityThreat Detection

Properties

Name Type Description
Arn object
Id object
View JSON Schema on GitHub

JSON Schema

guardduty-iam-instance-profile-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-iam-instance-profile-schema.json",
  "title": "IamInstanceProfile",
  "description": "Contains information about the EC2 instance profile.",
  "type": "object",
  "properties": {
    "Arn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "xml": {
            "name": "arn"
          },
          "description": "The profile ARN of the EC2 instance."
        }
      ]
    },
    "Id": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "xml": {
            "name": "id"
          },
          "description": "The profile ID of the EC2 instance."
        }
      ]
    }
  }
}