Amazon Inspector · JSON Structure

Inspector Account State List Structure

AccountStateList schema

Type: array Properties: 0
ComplianceContainer SecurityEC2LambdaSecurityVulnerability Scanning

AccountStateList is a JSON Structure definition published by Amazon Inspector. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

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-inspector/refs/heads/main/json-structure/inspector-account-state-list-structure.json",
  "name": "AccountStateList",
  "description": "AccountStateList schema",
  "type": "array",
  "items": {
    "type": "object",
    "required": [
      "accountId",
      "resourceState",
      "state"
    ],
    "properties": {
      "accountId": {
        "allOf": [
          {
            "$ref": "#/components/schemas/AccountId"
          },
          {
            "description": "The Amazon Web Services account ID."
          }
        ]
      },
      "resourceState": {
        "allOf": [
          {
            "$ref": "#/components/schemas/ResourceState"
          },
          {
            "description": "An object detailing which resources Amazon Inspector is enabled to scan for the account."
          }
        ]
      },
      "state": {
        "allOf": [
          {
            "$ref": "#/components/schemas/State"
          },
          {
            "description": "An object detailing the status of Amazon Inspector for the account."
          }
        ]
      }
    },
    "description": "An object with details the status of an Amazon Web Services account within your Amazon Inspector environment."
  }
}