Module Values.JavaScriptSourceMapsSource

A structure that contains the configuration for how an app monitor can unminify JavaScript error stack traces using source maps.

Sourcetype nonrec t = {
  1. status : DeobfuscationStatus.t;
    (*

    Specifies whether JavaScript error stack traces should be unminified for this app monitor. The default is for JavaScript error stack trace unminification to be DISABLED.

    *)
  2. s3Uri : DeobfuscationS3Uri.t option;
    (*

    The S3Uri of the bucket or folder that stores the source map files. It is required if status is ENABLED.

    *)
}
Sourceval context_ : string
Sourceval make : ?s3Uri:??? -> status:DeobfuscationStatus.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of DeobfuscationS3Uri.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