Module Values.ClassificationSource

A classification refers to a set of specific configurations.

Sourcetype nonrec t = {
  1. name : NameString.t option;
    (*

    The name of the configuration classification.

    *)
  2. properties : ParametersMap.t option;
    (*

    A set of properties specified within a configuration classification.

    *)
}
Sourceval make : ?name:??? -> ?properties:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of KeyString.t ] * [> `String of ParametersMapValue.t ]) list | `String of NameString.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