Module Values.SensitiveDataDetectionsSource

The list of detected instances of sensitive data.

Sourcetype nonrec t = {
  1. count : Long.t option;
    (*

    The total number of occurrences of sensitive data that were detected.

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

    The type of sensitive data that was detected. For example, the type might indicate that the data is an email address.

    *)
  3. occurrences : Occurrences.t option;
    (*

    Details about the sensitive data that was detected.

    *)
}
Sourceval make : ?count:??? -> ?type_:??? -> ?occurrences:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Long.t | `String of NonEmptyString.t | `Structure of (string * [> `List of [> `Structure of (string * [> `Long of Long.t | `String of NonEmptyString.t | `Structure of (string * [> `Long of Long.t ]) list ]) list ] list ]) list ]) 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