Amazon WorkSpaces · Schema

StandbyWorkspace

Describes a standby WorkSpace.

DesktopEnd User ComputingVirtual DesktopDesktop as a Service

Properties

Name Type Description
PrimaryWorkspaceId object
VolumeEncryptionKey object
DirectoryId object
Tags object
View JSON Schema on GitHub

JSON Schema

workspaces-standby-workspace-schema.json Raw ↑
{
  "type": "object",
  "required": [
    "PrimaryWorkspaceId",
    "DirectoryId"
  ],
  "properties": {
    "PrimaryWorkspaceId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/WorkspaceId"
        },
        {
          "description": "The identifier of the standby WorkSpace."
        }
      ]
    },
    "VolumeEncryptionKey": {
      "allOf": [
        {
          "$ref": "#/components/schemas/VolumeEncryptionKey"
        },
        {
          "description": "The volume encryption key of the standby WorkSpace."
        }
      ]
    },
    "DirectoryId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DirectoryId"
        },
        {
          "description": "The identifier of the directory for the standby WorkSpace."
        }
      ]
    },
    "Tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagList"
        },
        {
          "description": "The tags associated with the standby WorkSpace."
        }
      ]
    }
  },
  "description": "Describes a standby WorkSpace.",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "StandbyWorkspace",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-workspaces/refs/heads/main/json-schema/workspaces-standby-workspace-schema.json"
}