Skip to main content

engine_versions

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

Overview

Nameengine_versions
TypeResource
Idaws.dms.engine_versions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
engine_versionsarrayReturned EngineVersion objects that describe the replication instance engine versions used in the project.
markerstringAn 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:

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

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

SELECT examples

Returns information about the replication instance versions used in the project.

SELECT
engine_versions,
marker
FROM aws.dms.engine_versions
WHERE region = '{{ region }}' -- required
;