Module Values.CreateOutboundConnectionResponseSource

The result of a CreateOutboundConnection request. Contains details about the newly created 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. connectionAlias : ConnectionAlias.t option;
    (*

    Name of the connection.

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

    The status of the connection.

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

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

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

    The connection mode.

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

    The ConnectionProperties for the newly created connection.

    *)
}
Sourcetype nonrec error = [
  1. | `DisabledOperationException of DisabledOperationException.t
  2. | `InternalException of InternalException.t
  3. | `LimitExceededException of LimitExceededException.t
  4. | `ResourceAlreadyExistsException of ResourceAlreadyExistsException.t
  5. | `Unknown_operation_error of string * string option
]
Sourceval make : ?localDomainInfo:??? -> ?remoteDomainInfo:??? -> ?connectionAlias:??? -> ?connectionStatus:??? -> ?connectionId:??? -> ?connectionMode:??? -> ?connectionProperties:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `DisabledOperationException of unit | `InternalException of unit | `LimitExceededException of unit | `ResourceAlreadyExistsException of unit | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `DisabledOperationException of unit | `InternalException of unit | `LimitExceededException of unit | `ResourceAlreadyExistsException of unit | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ConnectionAlias.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