Values_0.AuditCheckDetailsSourceInformation about the audit check.
type nonrec t = {checkRunStatus : AuditCheckRunStatus.t option;The completion status of this check. One of "IN_PROGRESS", "WAITING_FOR_DATA_COLLECTION", "CANCELED", "COMPLETED_COMPLIANT", "COMPLETED_NON_COMPLIANT", or "FAILED".
*)checkCompliant : CheckCompliant.t option;True if the check is complete and found all resources compliant.
*)totalResourcesCount : TotalResourcesCount.t option;The number of resources on which the check was performed.
*)nonCompliantResourcesCount : NonCompliantResourcesCount.t option;The number of resources that were found noncompliant during the check.
*)suppressedNonCompliantResourcesCount : SuppressedNonCompliantResourcesCount.t
option;Describes how many of the non-compliant resources created during the evaluation of an audit check were marked as suppressed.
*)errorCode : ErrorCode.t option;The code of any error encountered when this check is performed during this audit. One of "INSUFFICIENT_PERMISSIONS" or "AUDIT_CHECK_DISABLED".
*)message : ErrorMessage.t option;The message associated with any error encountered when this check is performed during this audit.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of CheckCompliant.t
| `Enum of string
| `Long of TotalResourcesCount.t
| `String of ErrorCode.t ])
list ]