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

Connection

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

Status of the connection between an endpoint and a replication instance, including Amazon Resource Names (ARNs) and the last error message issued.

interface Connection {
EndpointArn?: string | null;
EndpointIdentifier?: string | null;
LastFailureMessage?: string | null;
ReplicationInstanceArn?: string | null;
ReplicationInstanceIdentifier?: string | null;
Status?: string | null;
}

§Properties

§
EndpointArn?: string | null
[src]

The ARN string that uniquely identifies the endpoint.

§
EndpointIdentifier?: string | null
[src]

The identifier of the endpoint. Identifiers must begin with a letter and must contain only ASCII letters, digits, and hyphens. They can't end with a hyphen or contain two consecutive hyphens.

§
LastFailureMessage?: string | null
[src]

The error message when the connection last failed.

§
ReplicationInstanceArn?: string | null
[src]

The ARN of the replication instance.

§
ReplicationInstanceIdentifier?: string | null
[src]

The replication instance identifier. This parameter is stored as a lowercase string.

§
Status?: string | null
[src]

The connection status. This parameter can return one of the following values:

  • "successful"
    
  • "testing"
    
  • "failed"
    
  • "deleting"