Module Values_0.AuditCheckDetailsSource

Information about the audit check.

Sourcetype nonrec t = {
  1. 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".

    *)
  2. checkCompliant : CheckCompliant.t option;
    (*

    True if the check is complete and found all resources compliant.

    *)
  3. totalResourcesCount : TotalResourcesCount.t option;
    (*

    The number of resources on which the check was performed.

    *)
  4. nonCompliantResourcesCount : NonCompliantResourcesCount.t option;
    (*

    The number of resources that were found noncompliant during the check.

    *)
  5. suppressedNonCompliantResourcesCount : SuppressedNonCompliantResourcesCount.t option;
    (*

    Describes how many of the non-compliant resources created during the evaluation of an audit check were marked as suppressed.

    *)
  6. 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".

    *)
  7. message : ErrorMessage.t option;
    (*

    The message associated with any error encountered when this check is performed during this audit.

    *)
}
Sourceval make : ?checkRunStatus:??? -> ?checkCompliant:??? -> ?totalResourcesCount:??? -> ?nonCompliantResourcesCount:??? -> ?suppressedNonCompliantResourcesCount:??? -> ?errorCode:??? -> ?message:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of CheckCompliant.t | `Enum of string | `Long of TotalResourcesCount.t | `String of ErrorCode.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