Skip to main content

test_grid_session_actions

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

Overview

Nametest_grid_session_actions
TypeResource
Idaws.devicefarm.test_grid_session_actions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
actionsarrayThe action taken by the session.
next_tokenstringPagination token.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_test_grid_session_actionsselectregionReturns a list of the actions taken in a TestGridSession.

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

Returns a list of the actions taken in a TestGridSession.

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