executors
Creates, updates, deletes, gets or lists an executors resource.
Overview
| Name | executors |
| Type | Resource |
| Id | aws.athena.executors |
Fields
The following fields are returned by SELECT queries:
- list_executors
| Name | Datatype | Description |
|---|---|---|
executors_summary | array | Contains summary information about the executor. |
next_token | string | A token generated by the Athena service that specifies where to continue pagination if a previous request was truncated. To obtain the next set of pages, pass in the NextToken from the response object of the previous page call. |
session_id | string | The session ID. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_executors | select | region | Lists, in descending order, the executors that joined a session. Newer executors are listed first; older executors are listed later. The result can be optionally filtered by state. |
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_executors
Lists, in descending order, the executors that joined a session. Newer executors are listed first; older executors are listed later. The result can be optionally filtered by state.
SELECT
executors_summary,
next_token,
session_id
FROM aws.athena.executors
WHERE region = '{{ region }}' -- required
;