Skip to main content

endpoint_types

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

Overview

Nameendpoint_types
TypeResource
Idaws.dms.endpoint_types

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
endpoint_typestringThe type of endpoint. Valid values are source and target. (source, target)
engine_display_namestringThe expanded name for the engine name. For example, if the EngineName parameter is "aurora", this value would be "Amazon Aurora MySQL".
engine_namestringThe database engine name. Valid values, depending on the EndpointType, include "mysql", "oracle", "postgres", "mariadb", "aurora", "aurora-postgresql", "redshift", "s3", "db2", "db2-zos", "azuredb", "sybase", "dynamodb", "mongodb", "kinesis", "kafka", "elasticsearch", "documentdb", "sqlserver", "neptune", and "babelfish".
replication_instance_engine_minimum_versionstringThe earliest DMS engine version that supports this endpoint engine. Note that endpoint engines released with DMS versions earlier than 3.1.1 do not return a value for this parameter.
supports_cdcbooleanIndicates if change data capture (CDC) is supported.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_endpoint_typesselectregionReturns information about the type of endpoints available.

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 type of endpoints available.

SELECT
endpoint_type,
engine_display_name,
engine_name,
replication_instance_engine_minimum_version,
supports_cdc
FROM aws.dms.endpoint_types
WHERE region = '{{ region }}' -- required
;