Module Values.ConfigurationSource

The configuration of a connection.

Sourcetype nonrec t = {
  1. classification : ConfigurationClassificationString.t option;
    (*

    The classification of the connection configuration.

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

    The properties of the connection configuration.

    *)
}
Sourceval make : ?classification:??? -> ?properties:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of PropertyMapKeyString.t ] * [> `String of PropertyMapValueString.t ]) list | `String of ConfigurationClassificationString.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