Module Values.SanitizationWarningSource

Returns information about the configuration element or attribute that was sanitized in the configuration.

Sourcetype nonrec t = {
  1. attributeName : string option;
    (*

    The name of the configuration attribute that has been sanitized.

    *)
  2. elementName : string option;
    (*

    The name of the configuration element that has been sanitized.

    *)
  3. reason : SanitizationWarningReason.t option;
    (*

    The reason for which the configuration elements or attributes were sanitized.

    *)
}
Sourceval make : ?attributeName:??? -> ?elementName:??? -> ?reason:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of string ]) 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