Module Values.ControlDomainInsightsSource

A summary of the latest analytics data for a specific control domain. Control domain 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 control domain.

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

    The unique identifier for the control domain. Audit Manager supports the control domains that are provided by Amazon Web Services Control Catalog. For information about how to find a list of available control domains, see ListDomains in the Amazon Web Services Control Catalog API Reference.

    *)
  3. controlsCountByNoncompliantEvidence : NullableInteger.t option;
    (*

    The number of controls in the control domain that collected non-compliant evidence on the lastUpdated date.

    *)
  4. totalControlsCount : NullableInteger.t option;
    (*

    The total number of controls in the control domain.

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

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

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

    The time when the control domain insights were last updated.

    *)
}
Sourceval make : ?name:??? -> ?id:??? -> ?controlsCountByNoncompliantEvidence:??? -> ?totalControlsCount:??? -> ?evidenceInsights:??? -> ?lastUpdated:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of NullableInteger.t | `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