engine_versions
Creates, updates, deletes, gets or lists an engine_versions resource.
Overview
| Name | engine_versions |
| Type | Resource |
| Id | aws.athena.engine_versions |
Fields
The following fields are returned by SELECT queries:
- list_engine_versions
| Name | Datatype | Description |
|---|---|---|
engine_versions | array | A list of engine versions that are available to choose from. |
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. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_engine_versions | select | region | Returns a list of engine versions that are available to choose from, including the Auto option. |
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_engine_versions
Returns a list of engine versions that are available to choose from, including the Auto option.
SELECT
engine_versions,
next_token
FROM aws.athena.engine_versions
WHERE region = '{{ region }}' -- required
;