Module Values.ControlInsightsMetadataByAssessmentItemSource

A summary of the latest analytics data for a specific control in a specific active assessment. Control insights are grouped by control domain, and ranked by the highest total count of non-compliant evidence.

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

    The name of the assessment control.

    *)
  2. id : ControlDomainId.t option;
    (*

    The unique identifier for the assessment control.

    *)
  3. evidenceInsights : EvidenceInsights.t option;
    (*

    A breakdown of the compliance check status for the evidence that’s associated with the assessment control.

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

    The name of the control set that the assessment control belongs to.

    *)
  5. lastUpdated : Timestamp.t option;
    (*

    The time when the assessment control insights were last updated.

    *)
}
Sourceval make : ?name:??? -> ?id:??? -> ?evidenceInsights:??? -> ?controlSetName:??? -> ?lastUpdated:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t | `Structure of (string * [> `Integer of NullableInteger.t ]) list | `Timestamp of Timestamp.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