PolicyGenerationDetails

Contains the ARN details about the IAM entity for which the policy is generated.

Access ControlComplianceIAMPolicy ManagementSecurity

Properties

Name Type Description
principalArn object
View JSON Schema on GitHub

JSON Schema

iam-access-analyzer-policy-generation-details-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-policy-generation-details-schema.json",
  "title": "PolicyGenerationDetails",
  "description": "Contains the ARN details about the IAM entity for which the policy is generated.",
  "type": "object",
  "properties": {
    "principalArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PrincipalArn"
        },
        {
          "description": "The ARN of the IAM entity (user or role) for which you are generating a policy."
        }
      ]
    }
  },
  "required": [
    "principalArn"
  ]
}