Amazon IAM Access Analyzer · JSON Structure

Iam Access Analyzer Analyzed Resource Summary Structure

Contains the ARN of the analyzed resource.

Type: object Properties: 3 Required: 3
Access ControlComplianceIAMPolicy ManagementSecurity

AnalyzedResourceSummary is a JSON Structure definition published by Amazon IAM Access Analyzer, describing 3 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

resourceArn resourceOwnerAccount resourceType

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-resource-summary-structure.json",
  "name": "AnalyzedResourceSummary",
  "description": "Contains the ARN of the analyzed resource.",
  "type": "object",
  "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."
        }
      ]
    }
  },
  "required": [
    "resourceArn",
    "resourceOwnerAccount",
    "resourceType"
  ]
}