Values.KxNodeSourceA structure that stores metadata for a kdb node.
type nonrec t = {nodeId : KxClusterNodeIdString.t option;A unique identifier for the node.
*)availabilityZoneId : AvailabilityZoneId.t option;The identifier of the availability zones where subnets for the environment are created.
*)launchTime : Timestamp.t option;The time when a particular node is started. The value is determined as epoch time in milliseconds. For example, the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000000.
*)status : KxNodeStatus.t option;Specifies the status of the cluster nodes. RUNNING – The node is actively serving. PROVISIONING – The node is being prepared.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of KxClusterNodeIdString.t
| `Timestamp of Timestamp.t ])
list ]