Get Streaming Session Stream
nimblestudio_get_streaming_session_stream | R Documentation |
Gets a StreamingSessionStream for a streaming session¶
Description¶
Gets a StreamingSessionStream for a streaming session.
Invoke this operation to poll the resource after invoking
create_streaming_session_stream
.
After the StreamingSessionStream
changes to the READY
state, the url
property will contain a stream to be used with the DCV streaming client.
Usage¶
Arguments¶
sessionId
[required] The streaming session ID.
streamId
[required] The streaming session stream ID.
studioId
[required] The studio ID.
Value¶
A list with the following syntax:
list(
stream = list(
createdAt = as.POSIXct(
"2015-01-01"
),
createdBy = "string",
expiresAt = as.POSIXct(
"2015-01-01"
),
ownedBy = "string",
state = "READY"|"CREATE_IN_PROGRESS"|"DELETE_IN_PROGRESS"|"DELETED"|"CREATE_FAILED"|"DELETE_FAILED",
statusCode = "STREAM_CREATE_IN_PROGRESS"|"STREAM_READY"|"STREAM_DELETE_IN_PROGRESS"|"STREAM_DELETED"|"INTERNAL_ERROR"|"NETWORK_CONNECTION_ERROR",
streamId = "string",
url = "string"
)
)