Module Values.CreateOutboundCrossClusterSearchConnectionResponseSource

The result of a CreateOutboundCrossClusterSearchConnection request. Contains the details of the newly created cross-cluster search connection.

Sourcetype nonrec t = {
  1. sourceDomainInfo : DomainInformation.t option;
    (*

    Specifies the DomainInformation for the source Elasticsearch domain.

    *)
  2. destinationDomainInfo : DomainInformation.t option;
    (*

    Specifies the DomainInformation for the destination Elasticsearch domain.

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

    Specifies the connection alias provided during the create connection request.

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

    Specifies the OutboundCrossClusterSearchConnectionStatus for the newly created connection.

    *)
  5. crossClusterSearchConnectionId : CrossClusterSearchConnectionId.t option;
    (*

    Unique id for the created outbound connection, which is used for subsequent operations on 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 : ?sourceDomainInfo:??? -> ?destinationDomainInfo:??? -> ?connectionAlias:??? -> ?connectionStatus:??? -> ?crossClusterSearchConnectionId:??? -> 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 * [> `String of ConnectionAlias.t | `Structure of (string * [> `Enum of string | `String of OwnerId.t ]) 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