Module Values_0.PatchStatusSource

Information about the approval status of a patch.

Sourcetype nonrec t = {
  1. deploymentStatus : PatchDeploymentStatus.t option;
    (*

    The approval status of a patch.

    *)
  2. complianceLevel : PatchComplianceLevel.t option;
    (*

    The compliance severity level for a patch.

    *)
  3. approvalDate : DateTime.t option;
    (*

    The date the patch was approved (or will be approved if the status is PENDING_APPROVAL).

    *)
}
Sourceval make : ?deploymentStatus:??? -> ?complianceLevel:??? -> ?approvalDate:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `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