Amazon Managed Grafana · JSON Structure

Amazon Managed Grafana Idp Metadata Structure

A structure containing the identity provider (IdP) metadata used to integrate the identity provider with this workspace. You can specify the metadata either by providing a URL to its location in the url parameter, or by specifying the full metadata in XML format in the xml parameter. Specifying both will cause an error.

Type: object Properties: 2
DashboardsMonitoringObservabilityVisualization

IdpMetadata 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

url xml

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-idp-metadata-structure.json",
  "name": "IdpMetadata",
  "description": "A structure containing the identity provider (IdP) metadata used to integrate the identity provider with this workspace. You can specify the metadata either by providing a URL to its location in the <code>url</code> parameter, or by specifying the full metadata in XML format in the <code>xml</code> parameter. Specifying both will cause an error.",
  "type": "object",
  "properties": {
    "url": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IdpMetadataUrl"
        },
        {
          "description": "The URL of the location containing the IdP metadata."
        }
      ]
    },
    "xml": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The full IdP metadata, in XML format."
        }
      ]
    }
  }
}