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

InboundConnectionStatus

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

The connection status of an inbound cross-cluster connection.

interface InboundConnectionStatus {
Message?: string | null;
StatusCode?: InboundConnectionStatusCode | null;
}

§Properties

§
Message?: string | null
[src]

Verbose information for the inbound connection status.

§

The state code for the inbound connection. Can be one of the following:

  • PENDING_ACCEPTANCE: Inbound connection is not yet accepted by the remote domain owner.
  • APPROVED: Inbound connection is pending acceptance by the remote domain owner.
  • PROVISIONING: Inbound connection provisioning is in progress.
  • ACTIVE: Inbound connection is active and ready to use.
  • REJECTING: Inbound connection rejection is in process.
  • REJECTED: Inbound connection is rejected.
  • DELETING: Inbound connection deletion is in progress.
  • DELETED: Inbound connection is deleted and can no longer be used.