Module Values_0.ComplianceSummaryItemSource

A summary of compliance information by compliance type.

Sourcetype nonrec t = {
  1. complianceType : ComplianceTypeName.t option;
    (*

    The type of compliance item. For example, the compliance type can be Association, Patch, or Custom:string.

    *)
  2. compliantSummary : CompliantSummary.t option;
    (*

    A list of COMPLIANT items for the specified compliance type.

    *)
  3. nonCompliantSummary : NonCompliantSummary.t option;
    (*

    A list of NON_COMPLIANT items for the specified compliance type.

    *)
}
Sourceval make : ?complianceType:??? -> ?compliantSummary:??? -> ?nonCompliantSummary:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ComplianceTypeName.t | `Structure of (string * [> `Integer of ComplianceSummaryCount.t | `Structure of (string * [> `Integer of ComplianceSummaryCount.t ]) list ]) list ]) 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