Amazon Managed Grafana · JSON Structure

Amazon Managed Grafana Update Error Structure

A structure containing information about one error encountered while performing an UpdatePermissions operation.

Type: object Properties: 3 Required: 3
DashboardsMonitoringObservabilityVisualization

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

Properties

causedBy code message

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-managed-grafana/refs/heads/main/json-structure/amazon-managed-grafana-update-error-structure.json",
  "name": "UpdateError",
  "description": "A structure containing information about one error encountered while performing an <a href=\"https://docs.aws.amazon.com/grafana/latest/APIReference/API_UpdatePermissions.html\">UpdatePermissions</a> operation.",
  "type": "object",
  "properties": {
    "causedBy": {
      "allOf": [
        {
          "$ref": "#/components/schemas/UpdateInstruction"
        },
        {
          "description": "Specifies which permission update caused the error."
        }
      ]
    },
    "code": {
      "allOf": [
        {
          "$ref": "#/components/schemas/UpdateErrorCodeInteger"
        },
        {
          "description": "The error code."
        }
      ]
    },
    "message": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The message for this error."
        }
      ]
    }
  },
  "required": [
    "causedBy",
    "code",
    "message"
  ]
}