Skip to main content

gui_session_access_details

Creates, updates, deletes, gets or lists a gui_session_access_details resource.

Overview

Namegui_session_access_details
TypeResource
Idaws.lightsail.gui_session_access_details

Fields

The following fields are returned by SELECT queries:

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
create_gui_session_access_detailsinsertregion, resourceNameCreates two URLs that are used to access a virtual computer’s graphical user interface (GUI) session. The primary URL initiates a web-based Amazon DCV session to the virtual computer's application. The secondary URL initiates a web-based Amazon DCV session to the virtual computer's operating session. Use StartGUISession to open the session.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

INSERT examples

Creates two URLs that are used to access a virtual computer’s graphical user interface (GUI) session. The primary URL initiates a web-based Amazon DCV session to the virtual computer's application. The secondary URL initiates a web-based Amazon DCV session to the virtual computer's operating session. Use StartGUISession to open the session.

INSERT INTO aws.lightsail.gui_session_access_details (
resourceName,
region
)
SELECT
'{{ resourceName }}' /* required */,
'{{ region }}'
RETURNING
failure_reason,
percentage_complete,
resource_name,
sessions,
status
;