JobError

Contains the details about the policy generation error.

Access ControlComplianceIAMPolicy ManagementSecurity

Properties

Name Type Description
code object
message object
View JSON Schema on GitHub

JSON Schema

iam-access-analyzer-job-error-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-job-error-schema.json",
  "title": "JobError",
  "description": "Contains the details about the policy generation error.",
  "type": "object",
  "properties": {
    "code": {
      "allOf": [
        {
          "$ref": "#/components/schemas/JobErrorCode"
        },
        {
          "description": "The job error code."
        }
      ]
    },
    "message": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "Specific information about the error. For example, which service quota was exceeded or which resource was not found."
        }
      ]
    }
  },
  "required": [
    "code",
    "message"
  ]
}