Amazon IAM Access Analyzer · JSON Structure

Iam Access Analyzer Analyzed Resources List Structure

AnalyzedResourcesList schema from AWS IAM Access Analyzer API

Type: array Properties: 0
Access ControlComplianceIAMPolicy ManagementSecurity

AnalyzedResourcesList is a JSON Structure definition published by Amazon IAM Access Analyzer. 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-iam-access-analyzer/refs/heads/main/json-structure/iam-access-analyzer-analyzed-resources-list-structure.json",
  "name": "AnalyzedResourcesList",
  "description": "AnalyzedResourcesList schema from AWS IAM Access Analyzer API",
  "type": "array",
  "items": {
    "type": "object",
    "required": [
      "resourceArn",
      "resourceOwnerAccount",
      "resourceType"
    ],
    "properties": {
      "resourceArn": {
        "allOf": [
          {
            "$ref": "#/components/schemas/ResourceArn"
          },
          {
            "description": "The ARN of the analyzed resource."
          }
        ]
      },
      "resourceOwnerAccount": {
        "allOf": [
          {
            "$ref": "#/components/schemas/String"
          },
          {
            "description": "The Amazon Web Services account ID that owns the resource."
          }
        ]
      },
      "resourceType": {
        "allOf": [
          {
            "$ref": "#/components/schemas/ResourceType"
          },
          {
            "description": "The type of resource that was analyzed."
          }
        ]
      }
    },
    "description": "Contains the ARN of the analyzed resource."
  }
}