Module Values_0.DescribeInstancePatchesResultSource

Retrieves information about the patches on the specified managed node and their state relative to the patch baseline being used for the node.

Sourcetype nonrec t = {
  1. patches : PatchComplianceDataList.t option;
    (*

    Each entry in the array is a structure containing: Title (string) KBId (string) Classification (string) Severity (string) State (string, such as "INSTALLED" or "FAILED") InstalledTime (DateTime) InstalledBy (string)

    *)
  2. nextToken : NextToken.t option;
    (*

    The token to use when requesting the next set of items. If there are no additional items to return, the string is empty.

    *)
}
Sourcetype nonrec error = [
  1. | `InternalServerError of InternalServerError.t
  2. | `InvalidFilter of InvalidFilter.t
  3. | `InvalidInstanceId of InvalidInstanceId.t
  4. | `InvalidNextToken of InvalidNextToken.t
  5. | `Unknown_operation_error of string * string option
]
Sourceval make : ?patches:??? -> ?nextToken:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InternalServerError of InternalServerError.t | `InvalidFilter of InvalidFilter.t | `InvalidInstanceId of InvalidInstanceId.t | `InvalidNextToken of InvalidNextToken.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `InternalServerError of InternalServerError.t | `InvalidFilter of InvalidFilter.t | `InvalidInstanceId of InvalidInstanceId.t | `InvalidNextToken of InvalidNextToken.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of PatchTitle.t | `Timestamp of DateTime.t ]) list ] list | `String of NextToken.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