Module Values.ValidationMessageSource

An error or warning for a desired configuration option value.

Sourcetype nonrec t = {
  1. message : ValidationMessageString.t option;
    (*

    A message describing the error or warning.

    *)
  2. severity : ValidationSeverity.t option;
    (*

    An indication of the severity of this message: error: This message indicates that this is not a valid setting for an option. warning: This message is providing information you should take into account.

    *)
  3. namespace : OptionNamespace.t option;
    (*

    The namespace to which the option belongs.

    *)
  4. optionName : ConfigurationOptionName.t option;
    (*

    The name of the option.

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