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¶
WorkspaceIdsThe identifiers of the WorkSpaces. You can specify up to 25 WorkSpaces.
NextTokenIf you received a
NextTokenfrom 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"
)