Amazon Inspector · Schema

AwsEc2InstanceDetails

Details of the Amazon EC2 instance involved in a finding.

ComplianceContainer SecurityEC2LambdaSecurityVulnerability Scanning

Properties

Name Type Description
iamInstanceProfileArn object
imageId object
ipV4Addresses object
ipV6Addresses object
keyName object
launchedAt object
platform object
subnetId object
type object
vpcId object
View JSON Schema on GitHub

JSON Schema

inspector-aws-ec2-instance-details-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-inspector/refs/heads/main/json-schema/inspector-aws-ec2-instance-details-schema.json",
  "title": "AwsEc2InstanceDetails",
  "description": "Details of the Amazon EC2 instance involved in a finding.",
  "type": "object",
  "properties": {
    "iamInstanceProfileArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NonEmptyString"
        },
        {
          "description": "The IAM instance profile ARN of the Amazon EC2 instance."
        }
      ]
    },
    "imageId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NonEmptyString"
        },
        {
          "description": "The image ID of the Amazon EC2 instance."
        }
      ]
    },
    "ipV4Addresses": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IpV4AddressList"
        },
        {
          "description": "The IPv4 addresses of the Amazon EC2 instance."
        }
      ]
    },
    "ipV6Addresses": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IpV6AddressList"
        },
        {
          "description": "The IPv6 addresses of the Amazon EC2 instance."
        }
      ]
    },
    "keyName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NonEmptyString"
        },
        {
          "description": "The name of the key pair used to launch the Amazon EC2 instance."
        }
      ]
    },
    "launchedAt": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DateTimeTimestamp"
        },
        {
          "description": "The date and time the Amazon EC2 instance was launched at."
        }
      ]
    },
    "platform": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Platform"
        },
        {
          "description": "The platform of the Amazon EC2 instance."
        }
      ]
    },
    "subnetId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NonEmptyString"
        },
        {
          "description": "The subnet ID of the Amazon EC2 instance."
        }
      ]
    },
    "type": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NonEmptyString"
        },
        {
          "description": "The type of the Amazon EC2 instance."
        }
      ]
    },
    "vpcId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NonEmptyString"
        },
        {
          "description": "The VPC ID of the Amazon EC2 instance."
        }
      ]
    }
  }
}