Create Gui Session Access Details
lightsail_create_gui_session_access_details | R Documentation |
Creates two URLs that are used to access a virtual computer’s graphical user interface (GUI) session¶
Description¶
Creates two URLs that are used to access a virtual computer’s graphical user interface (GUI) session. The primary URL initiates a web-based NICE DCV session to the virtual computer's application. The secondary URL initiates a web-based NICE DCV session to the virtual computer's operating session.
Use start_gui_session
to open the session.
Usage¶
Arguments¶
resourceName
[required] The resource name.
Value¶
A list with the following syntax:
list(
resourceName = "string",
status = "startExpired"|"notStarted"|"started"|"starting"|"stopped"|"stopping"|"settingUpInstance"|"failedInstanceCreation"|"failedStartingGUISession"|"failedStoppingGUISession",
percentageComplete = 123,
failureReason = "string",
sessions = list(
list(
name = "string",
url = "string",
isPrimary = TRUE|FALSE
)
)
)