Module Values.VulnerabilityVendorSource

A vendor that generates a vulnerability report.

Sourcetype nonrec t = {
  1. name : NonEmptyString.t;
    (*

    The name of the vendor.

    *)
  2. url : NonEmptyString.t option;
    (*

    The URL of the vulnerability advisory.

    *)
  3. vendorSeverity : NonEmptyString.t option;
    (*

    The severity that the vendor assigned to the vulnerability.

    *)
  4. vendorCreatedAt : NonEmptyString.t option;
    (*

    Indicates when the vulnerability advisory was created. For more information about the validation and formatting of timestamp fields in Security Hub CSPM, see Timestamps.

    *)
  5. vendorUpdatedAt : NonEmptyString.t option;
    (*

    Indicates when the vulnerability advisory was last updated. For more information about the validation and formatting of timestamp fields in Security Hub CSPM, see Timestamps.

    *)
}
Sourceval context_ : string
Sourceval make : ?url:??? -> ?vendorSeverity:??? -> ?vendorCreatedAt:??? -> ?vendorUpdatedAt:??? -> name:NonEmptyString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NonEmptyString.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