endpoint_types
Creates, updates, deletes, gets or lists an endpoint_types resource.
Overview
| Name | endpoint_types |
| Type | Resource |
| Id | aws.dms.endpoint_types |
Fields
The following fields are returned by SELECT queries:
- describe_endpoint_types
| Name | Datatype | Description |
|---|---|---|
endpoint_type | string | The type of endpoint. Valid values are source and target. (source, target) |
engine_display_name | string | The expanded name for the engine name. For example, if the EngineName parameter is "aurora", this value would be "Amazon Aurora MySQL". |
engine_name | string | The 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_version | string | The 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_cdc | boolean | Indicates if change data capture (CDC) is supported. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_endpoint_types | select | region | Returns 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- describe_endpoint_types
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
;