Module Values.InboundConnectionSource

Describes an inbound cross-cluster connection for Amazon OpenSearch Service. For more information, see Cross-cluster search for Amazon OpenSearch Service.

Sourcetype nonrec t = {
  1. localDomainInfo : DomainInformationContainer.t option;
    (*

    Information about the source (local) domain.

    *)
  2. remoteDomainInfo : DomainInformationContainer.t option;
    (*

    Information about the destination (remote) domain.

    *)
  3. connectionId : ConnectionId.t option;
    (*

    The unique identifier of the connection.

    *)
  4. connectionStatus : InboundConnectionStatus.t option;
    (*

    The current status of the connection.

    *)
  5. connectionMode : ConnectionMode.t option;
    (*

    The connection mode.

    *)
}
Sourceval make : ?localDomainInfo:??? -> ?remoteDomainInfo:??? -> ?connectionId:??? -> ?connectionStatus:??? -> ?connectionMode:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ConnectionId.t | `Structure of (string * [> `Enum of string | `String of ConnectionStatusMessage.t | `Structure of (string * [> `String of OwnerId.t ]) list ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t