Module Values.CustomDetectionSource

Provides information about a custom data identifier that produced a sensitive data finding, and the sensitive data that it detected for the finding.

Sourcetype nonrec t = {
  1. arn : string option;
    (*

    The unique identifier for the custom data identifier.

    *)
  2. count : Awso.Import.Int64.t option;
    (*

    The total number of occurrences of the sensitive data that the custom data identifier detected.

    *)
  3. name : string option;
    (*

    The name of the custom data identifier.

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

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

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