Skip to main content

test_grid_sessions

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

Overview

Nametest_grid_sessions
TypeResource
Idaws.devicefarm.test_grid_sessions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
next_tokenstringPagination token.
test_grid_sessionsarrayThe sessions that match the criteria in a ListTestGridSessionsRequest.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_test_grid_sessionsselectregionRetrieves a list of sessions for a TestGridProject.
get_test_grid_sessionselectregionA session is an instance of a browser created through a RemoteWebDriver with the URL from CreateTestGridUrlResult$url. You can use the following to look up sessions: The session ARN (GetTestGridSessionRequest$sessionArn). The project ARN and a session ID (GetTestGridSessionRequest$projectArn and GetTestGridSessionRequest$sessionId).

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)

SELECT examples

Retrieves a list of sessions for a TestGridProject.

SELECT
next_token,
test_grid_sessions
FROM aws.devicefarm.test_grid_sessions
WHERE region = '{{ region }}' -- required
;