Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

SupportedEndpointType

import type { SupportedEndpointType } from "https://aws-api.deno.dev/v0.3/services/dms.ts?docs=full";

Provides information about types of supported endpoints in response to a request by the DescribeEndpointTypes operation. This information includes the type of endpoint, the database engine name, and whether change data capture (CDC) is supported.

interface SupportedEndpointType {
EndpointType?: ReplicationEndpointTypeValue | null;
EngineDisplayName?: string | null;
EngineName?: string | null;
ReplicationInstanceEngineMinimumVersion?: string | null;
SupportsCDC?: boolean | null;
}

§Properties

§
EndpointType?: ReplicationEndpointTypeValue | null
[src]

The type of endpoint. Valid values are source and target.

§
EngineDisplayName?: string | null
[src]

The expanded name for the engine name. For example, if the EngineName parameter is "aurora," this value would be "Amazon Aurora MySQL."

§
EngineName?: string | null
[src]

The database engine name. Valid values, depending on the EndpointType, include "mysql", "oracle", "postgres", "mariadb", "aurora", "aurora-postgresql", "redshift", "s3", "db2", "azuredb", "sybase", "dynamodb", "mongodb", "kinesis", "kafka", "elasticsearch", "documentdb", "sqlserver", and "neptune".

§
ReplicationInstanceEngineMinimumVersion?: string | null
[src]

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.

§
SupportsCDC?: boolean | null
[src]

Indicates if change data capture (CDC) is supported.