Module Values.InboundCrossClusterSearchConnectionStatusSource

Specifies the coonection status of an inbound cross-cluster search connection.

Sourcetype nonrec t = {
  1. statusCode : InboundCrossClusterSearchConnectionStatusCode.t option;
    (*

    The state code for inbound connection. This can be one of the following: PENDING_ACCEPTANCE: Inbound connection is not yet accepted by destination domain owner. APPROVED: Inbound connection is pending acceptance by destination domain owner. 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 cannot be used further.

    *)
  2. message : CrossClusterSearchConnectionStatusMessage.t option;
    (*

    Specifies verbose information for the inbound connection status.

    *)
}
Sourceval make : ?statusCode:??? -> ?message:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of CrossClusterSearchConnectionStatusMessage.t ]) 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