Module Values.NodeConfigSource

Configuration options for defining the setup of any node type within the cluster.

Sourcetype nonrec t = {
  1. enabled : Boolean.t option;
    (*

    A boolean value indicating whether a specific node type is active or inactive.

    *)
  2. type_ : OpenSearchPartitionInstanceType.t option;
    (*

    The instance type of a particular node within the cluster.

    *)
  3. count : IntegerClass.t option;
    (*

    The number of nodes of a specific type within the cluster.

    *)
}
Sourceval make : ?enabled:??? -> ?type_:??? -> ?count:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Integer of IntegerClass.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