engine_versions
Creates, updates, deletes, gets or lists an engine_versions resource.
Overview
| Name | engine_versions |
| Type | Resource |
| Id | aws.dms.engine_versions |
Fields
The following fields are returned by SELECT queries:
- describe_engine_versions
| Name | Datatype | Description |
|---|---|---|
engine_versions | array | Returned EngineVersion objects that describe the replication instance engine versions used in the project. |
marker | string | An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_engine_versions | select | region | Returns information about the replication instance versions used in the project. |
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
- describe_engine_versions
Returns information about the replication instance versions used in the project.
SELECT
engine_versions,
marker
FROM aws.dms.engine_versions
WHERE region = '{{ region }}' -- required
;