Module Values.DefaultDetectionSource

Provides information about a type of sensitive data that was detected by a managed data identifier and produced a sensitive data finding.

Sourcetype nonrec t = {
  1. count : Awso.Import.Int64.t option;
    (*

    The total number of occurrences of the type of sensitive data that was detected.

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

    The location of 1-15 occurrences of the sensitive data that was detected. A finding includes location data for a maximum of 15 occurrences of sensitive data.

    *)
  3. type_ : string option;
    (*

    The type of sensitive data that was detected. For example, AWS_CREDENTIALS, PHONE_NUMBER, or ADDRESS.

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