Amazon Managed Grafana · JSON Structure

Amazon Managed Grafana Role Values Structure

This structure defines which groups defined in the SAML assertion attribute are to be mapped to the Grafana Admin and Editor roles in the workspace. SAML authenticated users not part of Admin or Editor role groups have Viewer permission over the workspace.

Type: object Properties: 2
DashboardsMonitoringObservabilityVisualization

RoleValues is a JSON Structure definition published by Amazon Managed Grafana, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

admin editor

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-role-values-structure.json",
  "name": "RoleValues",
  "description": "This structure defines which groups defined in the SAML assertion attribute are to be mapped to the Grafana <code>Admin</code> and <code>Editor</code> roles in the workspace. SAML authenticated users not part of <code>Admin</code> or <code>Editor</code> role groups have <code>Viewer</code> permission over the workspace.",
  "type": "object",
  "properties": {
    "admin": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RoleValueList"
        },
        {
          "description": "A list of groups from the SAML assertion attribute to grant the Grafana <code>Admin</code> role to."
        }
      ]
    },
    "editor": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RoleValueList"
        },
        {
          "description": "A list of groups from the SAML assertion attribute to grant the Grafana <code>Editor</code> role to."
        }
      ]
    }
  }
}