Skip to main content

engine_versions

Creates, updates, deletes, gets or lists an engine_versions resource.

Overview

Nameengine_versions
TypeResource
Idaws.athena.engine_versions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
engine_versionsarrayA list of engine versions that are available to choose from.
next_tokenstringA 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:

NameAccessible byRequired ParamsOptional ParamsDescription
list_engine_versionsselectregionReturns 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;