Module Values.VulnerabilitySource

Information about a security vulnerability that Amazon CodeGuru Security detected.

Sourcetype nonrec t = {
  1. referenceUrls : ReferenceUrls.t option;
    (*

    One or more URL addresses that contain details about a vulnerability.

    *)
  2. relatedVulnerabilities : RelatedVulnerabilities.t option;
    (*

    One or more vulnerabilities that are related to the vulnerability being described.

    *)
  3. id : String_.t option;
    (*

    The identifier for the vulnerability.

    *)
  4. filePath : FilePath.t option;
    (*

    An object that describes the location of the detected security vulnerability in your code.

    *)
  5. itemCount : Integer.t option;
    (*

    The number of times the vulnerability appears in your code.

    *)
}
Sourceval make : ?referenceUrls:??? -> ?relatedVulnerabilities:??? -> ?id:??? -> ?filePath:??? -> ?itemCount:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `List of [> `String of String_.t ] list | `String of String_.t | `Structure of (string * [> `Integer of Integer.t | `List of [> `Structure of (string * [> `Integer of Integer.t | `String of String_.t ]) list ] list | `String of String_.t ]) 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