test_grid_session_actions
Creates, updates, deletes, gets or lists a test_grid_session_actions resource.
Overview
| Name | test_grid_session_actions |
| Type | Resource |
| Id | aws.devicefarm.test_grid_session_actions |
Fields
The following fields are returned by SELECT queries:
- list_test_grid_session_actions
| Name | Datatype | Description |
|---|---|---|
actions | array | The action taken by the session. |
next_token | string | Pagination token. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_test_grid_session_actions | select | region | Returns 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_test_grid_session_actions
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
;