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

CreateOutboundConnectionResponse

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

The result of a "CreateOutboundConnection" request. Contains the details about the newly created cross-cluster connection.

interface CreateOutboundConnectionResponse {
ConnectionAlias?: string | null;
ConnectionId?: string | null;
ConnectionStatus?: OutboundConnectionStatus | null;
LocalDomainInfo?: DomainInformationContainer | null;
RemoteDomainInfo?: DomainInformationContainer | null;
}

§Properties

§
ConnectionAlias?: string | null
[src]

The connection alias provided during the create connection request.

§
ConnectionId?: string | null
[src]

The unique ID for the created outbound connection, which is used for subsequent operations on the connection.

§
ConnectionStatus?: OutboundConnectionStatus | null
[src]

The "OutboundConnectionStatus" for the newly created connection.

§
LocalDomainInfo?: DomainInformationContainer | null
[src]

The "AWSDomainInformation" for the local OpenSearch domain.

§
RemoteDomainInfo?: DomainInformationContainer | null
[src]

The "AWSDomainInformation" for the remote OpenSearch domain.