Describe Workspaces Connection Status
workspaces_describe_workspaces_connection_status | R Documentation |
Describes the connection status of the specified WorkSpaces¶
Description¶
Describes the connection status of the specified WorkSpaces.
Usage¶
Arguments¶
WorkspaceIds
The identifiers of the WorkSpaces. You can specify up to 25 WorkSpaces.
NextToken
If you received a
NextToken
from a previous call that was paginated, provide this token to receive the next set of results.
Value¶
A list with the following syntax:
list(
WorkspacesConnectionStatus = list(
list(
WorkspaceId = "string",
ConnectionState = "CONNECTED"|"DISCONNECTED"|"UNKNOWN",
ConnectionStateCheckTimestamp = as.POSIXct(
"2015-01-01"
),
LastKnownUserConnectionTimestamp = as.POSIXct(
"2015-01-01"
)
)
),
NextToken = "string"
)