Module Values.SensitiveDataResultSource

Contains a detected instance of sensitive data that are based on built-in identifiers.

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

    The category of sensitive data that was detected. For example, the category can indicate that the sensitive data involved credentials, financial information, or personal information.

    *)
  2. detections : SensitiveDataDetectionsList.t option;
    (*

    The list of detected instances of sensitive data.

    *)
  3. totalCount : Long.t option;
    (*

    The total number of occurrences of sensitive data.

    *)
}
Sourceval make : ?category:??? -> ?detections:??? -> ?totalCount:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `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 ] list | `Long of Long.t | `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