engine_versions
Creates, updates, deletes, gets or lists an engine_versions resource.
Overview
| Name | engine_versions |
| Type | Resource |
| Id | aws.m2.engine_versions |
Fields
The following fields are returned by SELECT queries:
- list_engine_versions
| Name | Datatype | Description |
|---|---|---|
engine_type | string | The type of target platform for the application. |
engine_version | string | The version of the engine type used by the application. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_engine_versions | select | region | engineType, maxResults, nextToken | Lists 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
engineType | string | The type of target platform. |
maxResults | integer | The maximum number of objects to return. |
nextToken | string | A 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
- list_engine_versions
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 }}'
;