Amazon WorkSpaces · Schema
WorkspaceConnectionStatus
Describes the connection status of a WorkSpace.
DesktopEnd User ComputingVirtual DesktopDesktop as a Service
Properties
| Name | Type | Description |
|---|---|---|
| WorkspaceId | object | |
| ConnectionState | object | |
| ConnectionStateCheckTimestamp | object | |
| LastKnownUserConnectionTimestamp | object |
JSON Schema
{
"type": "object",
"properties": {
"WorkspaceId": {
"allOf": [
{
"$ref": "#/components/schemas/WorkspaceId"
},
{
"description": "The identifier of the WorkSpace."
}
]
},
"ConnectionState": {
"allOf": [
{
"$ref": "#/components/schemas/ConnectionState"
},
{
"description": "The connection state of the WorkSpace. The connection state is unknown if the WorkSpace is stopped."
}
]
},
"ConnectionStateCheckTimestamp": {
"allOf": [
{
"$ref": "#/components/schemas/Timestamp"
},
{
"description": "The timestamp of the connection status check."
}
]
},
"LastKnownUserConnectionTimestamp": {
"allOf": [
{
"$ref": "#/components/schemas/Timestamp"
},
{
"description": "The timestamp of the last known user connection."
}
]
}
},
"description": "Describes the connection status of a WorkSpace.",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "WorkspaceConnectionStatus",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-workspaces/refs/heads/main/json-schema/workspaces-workspace-connection-status-schema.json"
}