AnalyzedResourceSummary

Contains the ARN of the analyzed resource.

Access ControlComplianceIAMPolicy ManagementSecurity

Properties

Name Type Description
resourceArn object
resourceOwnerAccount object
resourceType object
View JSON Schema on GitHub

JSON Schema

iam-access-analyzer-analyzed-resource-summary-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iam-access-analyzer/refs/heads/main/json-schema/iam-access-analyzer-analyzed-resource-summary-schema.json",
  "title": "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"
  ]
}