Skip to main content

engine_versions

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

Overview

Nameengine_versions
TypeResource
Idaws.m2.engine_versions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
engine_typestringThe type of target platform for the application.
engine_versionstringThe version of the engine type used by the application.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_engine_versionsselectregionengineType, maxResults, nextTokenLists the available engine versions.

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)
engineTypestringThe type of target platform.
maxResultsintegerThe maximum number of objects to return.
nextTokenstringA pagination token returned from a previous call to this operation. This specifies the next item to return. To return to the beginning of the list, exclude this parameter.

SELECT examples

Lists the available engine versions.

SELECT
engine_type,
engine_version
FROM aws.m2.engine_versions
WHERE region = '{{ region }}' -- required
AND engineType = '{{ engineType }}'
AND maxResults = '{{ maxResults }}'
AND nextToken = '{{ nextToken }}'
;