Module Values.SoftwarePackageSource

Information about a software package.

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

    The name of the software package.

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

    The version of the software package.

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

    The epoch of the software package.

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

    The release of the software package.

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

    The architecture used for the software package.

    *)
  6. packageManager : NonEmptyString.t option;
    (*

    The source of the package.

    *)
  7. filePath : NonEmptyString.t option;
    (*

    The file system path to the package manager inventory file.

    *)
  8. fixedInVersion : NonEmptyString.t option;
    (*

    The version of the software package in which the vulnerability has been resolved.

    *)
  9. remediation : NonEmptyString.t option;
    (*

    Describes the actions a customer can take to resolve the vulnerability in the software package.

    *)
  10. sourceLayerHash : NonEmptyString.t option;
    (*

    The source layer hash of the vulnerable package.

    *)
  11. sourceLayerArn : NonEmptyString.t option;
    (*

    The Amazon Resource Name (ARN) of the source layer.

    *)
}
Sourceval make : ?name:??? -> ?version:??? -> ?epoch:??? -> ?release:??? -> ?architecture:??? -> ?packageManager:??? -> ?filePath:??? -> ?fixedInVersion:??? -> ?remediation:??? -> ?sourceLayerHash:??? -> ?sourceLayerArn:??? -> 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