StatusReason

Provides more details about the current status of the analyzer. For example, if the creation for the analyzer fails, a Failed status is returned. For an analyzer with organization as the type, this failure can be due to an issue with creating the service-linked roles required in the member accounts of the Amazon Web Services organization.

Access ControlComplianceIAMPolicy ManagementSecurity

Properties

Name Type Description
code object
View JSON Schema on GitHub

JSON Schema

iam-access-analyzer-status-reason-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-status-reason-schema.json",
  "title": "StatusReason",
  "description": "Provides more details about the current status of the analyzer. For example, if the creation for the analyzer fails, a <code>Failed</code> status is returned. For an analyzer with organization as the type, this failure can be due to an issue with creating the service-linked roles required in the member accounts of the Amazon Web Services organization.",
  "type": "object",
  "properties": {
    "code": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ReasonCode"
        },
        {
          "description": "The reason code for the current status of the analyzer."
        }
      ]
    }
  },
  "required": [
    "code"
  ]
}