Module Values.OutboundConnectionSource

Specifies details about an outbound cross-cluster connection.

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;
    (*

    Unique identifier of the connection.

    *)
  4. connectionAlias : ConnectionAlias.t option;
    (*

    Name of the connection.

    *)
  5. connectionStatus : OutboundConnectionStatus.t option;
    (*

    Status of the connection.

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

    The connection mode.

    *)
  7. connectionProperties : ConnectionProperties.t option;
    (*

    Properties for the outbound connection.

    *)
}
Sourceval make : ?localDomainInfo:??? -> ?remoteDomainInfo:??? -> ?connectionId:??? -> ?connectionAlias:??? -> ?connectionStatus:??? -> ?connectionMode:??? -> ?connectionProperties:??? -> 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 * [> `Enum 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