Module Values_0.PatchComplianceDataSource

Information about the state of a patch on a particular managed node as it relates to the patch baseline used to patch the node.

Sourcetype nonrec t = {
  1. title : PatchTitle.t option;
    (*

    The title of the patch.

    *)
  2. kBId : PatchKbNumber.t option;
    (*

    The operating system-specific ID of the patch.

    *)
  3. classification : PatchClassification.t option;
    (*

    The classification of the patch, such as SecurityUpdates, Updates, and CriticalUpdates.

    *)
  4. severity : PatchSeverity.t option;
    (*

    The severity of the patch such as Critical, Important, and Moderate.

    *)
  5. state : PatchComplianceDataState.t option;
    (*

    The state of the patch on the managed node, such as INSTALLED or FAILED. For descriptions of each patch state, see About patch compliance in the Amazon Web Services Systems Manager User Guide.

    *)
  6. installedTime : DateTime.t option;
    (*

    The date/time the patch was installed on the managed node. Not all operating systems provide this level of information.

    *)
  7. cVEIds : PatchCVEIds.t option;
    (*

    The IDs of one or more Common Vulnerabilities and Exposure (CVE) issues that are resolved by the patch. Currently, CVE ID values are reported only for patches with a status of Missing or Failed.

    *)
}
Sourceval make : ?title:??? -> ?kBId:??? -> ?classification:??? -> ?severity:??? -> ?state:??? -> ?installedTime:??? -> ?cVEIds:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of PatchTitle.t | `Timestamp of DateTime.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