Module Values.CustomDataIdentifiersDetectionsSource

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. arn : NonEmptyString.t option;
    (*

    The ARN of the custom identifier that was used to detect the sensitive data.

    *)
  3. name : NonEmptyString.t option;
    (*

    he name of the custom identifier that detected the sensitive data.

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

    Details about the sensitive data that was detected.

    *)
}
Sourceval make : ?count:??? -> ?arn:??? -> ?name:??? -> ?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