Module Values.ClassificationStatusSource

Provides details about the current status of the sensitive data detection.

Sourcetype nonrec t = {
  1. code : NonEmptyString.t option;
    (*

    The code that represents the status of the sensitive data detection.

    *)
  2. reason : NonEmptyString.t option;
    (*

    A longer description of the current status of the sensitive data detection.

    *)
}
Sourceval make : ?code:??? -> ?reason:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NonEmptyString.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