CreateWorkspaceApiKeyResponse

CreateWorkspaceApiKeyResponse schema from Amazon Managed Grafana API

DashboardsMonitoringObservabilityVisualization

Properties

Name Type Description
key object
keyName object
workspaceId object
View JSON Schema on GitHub

JSON Schema

amazon-managed-grafana-create-workspace-api-key-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-managed-grafana/refs/heads/main/json-schema/amazon-managed-grafana-create-workspace-api-key-response-schema.json",
  "title": "CreateWorkspaceApiKeyResponse",
  "description": "CreateWorkspaceApiKeyResponse schema from Amazon Managed Grafana API",
  "type": "object",
  "properties": {
    "key": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ApiKeyToken"
        },
        {
          "description": "The key token. Use this value as a bearer token to authenticate HTTP requests to the workspace."
        }
      ]
    },
    "keyName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ApiKeyName"
        },
        {
          "description": "The name of the key that was created."
        }
      ]
    },
    "workspaceId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/WorkspaceId"
        },
        {
          "description": "The ID of the workspace that the key is valid for."
        }
      ]
    }
  },
  "required": [
    "key",
    "keyName",
    "workspaceId"
  ]
}