Module Values_0.AuditTaskMetadataSource

The audits that were performed.

Sourcetype nonrec t = {
  1. taskId : AuditTaskId.t option;
    (*

    The ID of this audit.

    *)
  2. taskStatus : AuditTaskStatus.t option;
    (*

    The status of this audit. One of "IN_PROGRESS", "COMPLETED", "FAILED", or "CANCELED".

    *)
  3. taskType : AuditTaskType.t option;
    (*

    The type of this audit. One of "ON_DEMAND_AUDIT_TASK" or "SCHEDULED_AUDIT_TASK".

    *)
}
Sourceval make : ?taskId:??? -> ?taskStatus:??? -> ?taskType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of AuditTaskId.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