Module Values_0.AuditMitigationActionsTaskMetadataSource

Information about an audit mitigation actions task that is returned by ListAuditMitigationActionsTasks.

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

    The unique identifier for the task.

    *)
  2. startTime : Timestamp.t option;
    (*

    The time at which the audit mitigation actions task was started.

    *)
  3. taskStatus : AuditMitigationActionsTaskStatus.t option;
    (*

    The current state of the audit mitigation actions task.

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