Module Values.InboundConnectionStatusSource

The status of an inbound cross-cluster connection for OpenSearch Service.

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

    The status code for the connection. Can be one of the following: PENDING_ACCEPTANCE - Inbound connection is not yet accepted by the remote domain owner. APPROVED: Inbound connection is pending acceptance by the remote domain owner. PROVISIONING: Inbound connection is being provisioned. ACTIVE: Inbound connection is active and ready to use. 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 can no longer be used.

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

    Information about the connection.

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