Amazon Managed Prometheus Create Workspace Response Structure

Represents the output of a CreateWorkspace operation.

Type: object Properties: 4 Required: 3
ContainersMonitoringObservabilityPrometheus

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

Properties

workspaceId arn status tags

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-prometheus/refs/heads/main/json-structure/amazon-managed-prometheus-create-workspace-response-structure.json",
  "name": "CreateWorkspaceResponse",
  "description": "Represents the output of a CreateWorkspace operation.",
  "type": "object",
  "properties": {
    "workspaceId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/WorkspaceId"
        },
        {
          "description": "The generated ID of the workspace that was just created."
        }
      ]
    },
    "arn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/WorkspaceArn"
        },
        {
          "description": "The ARN of the workspace that was just created."
        }
      ]
    },
    "status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/WorkspaceStatus"
        },
        {
          "description": "The status of the workspace that was just created (usually CREATING)."
        }
      ]
    },
    "tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagMap"
        },
        {
          "description": "The tags of this workspace."
        }
      ]
    }
  },
  "required": [
    "workspaceId",
    "arn",
    "status"
  ]
}