Values.CodeVulnerabilitiesFilePathSourceProvides details about where a code vulnerability is located in your Lambda function.
type nonrec t = {endLine : Integer.t option;The line number of the last line of code in which the vulnerability is located.
*)fileName : NonEmptyString.t option;The name of the file in which the code vulnerability is located.
*)filePath : NonEmptyString.t option;The file path to the code in which the vulnerability is located.
*)startLine : Integer.t option;The line number of the first line of code in which the vulnerability is located.
*)}val to_value :
t ->
[> `Structure of
(string * [> `Integer of Integer.t | `String of NonEmptyString.t ]) list ]