Amazon Managed Grafana · JSON Structure

Amazon Managed Grafana Authentication Summary Structure

A structure that describes whether the workspace uses SAML, IAM Identity Center, or both methods for user authentication, and whether that authentication is fully configured.

Type: object Properties: 2 Required: 1
DashboardsMonitoringObservabilityVisualization

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

Properties

providers samlConfigurationStatus

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-authentication-summary-structure.json",
  "name": "AuthenticationSummary",
  "description": "A structure that describes whether the workspace uses SAML, IAM Identity Center, or both methods for user authentication, and whether that authentication is fully configured.",
  "type": "object",
  "properties": {
    "providers": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AuthenticationProviders"
        },
        {
          "description": "Specifies whether the workspace uses SAML, IAM Identity Center, or both methods for user authentication."
        }
      ]
    },
    "samlConfigurationStatus": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SamlConfigurationStatus"
        },
        {
          "description": "Specifies whether the workplace's user authentication method is fully configured."
        }
      ]
    }
  },
  "required": [
    "providers"
  ]
}