Module Values_0.AuditMitigationActionExecutionMetadataSource

Returned by ListAuditMitigationActionsTask, this object contains information that describes a mitigation action that has been started.

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

    The unique identifier for the task that applies the mitigation action.

    *)
  2. findingId : FindingId.t option;
    (*

    The unique identifier for the findings to which the task and associated mitigation action are applied.

    *)
  3. actionName : MitigationActionName.t option;
    (*

    The friendly name of the mitigation action being applied by the task.

    *)
  4. actionId : MitigationActionId.t option;
    (*

    The unique identifier for the mitigation action being applied by the task.

    *)
  5. status : AuditMitigationActionsExecutionStatus.t option;
    (*

    The current status of the task being executed.

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

    The date and time when the task was started.

    *)
  7. endTime : Timestamp.t option;
    (*

    The date and time when the task was completed or canceled. Blank if the task is still running.

    *)
  8. errorCode : ErrorCode.t option;
    (*

    If an error occurred, the code that indicates which type of error occurred.

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

    If an error occurred, a message that describes the error.

    *)
}
Sourceval make : ?taskId:??? -> ?findingId:??? -> ?actionName:??? -> ?actionId:??? -> ?status:??? -> ?startTime:??? -> ?endTime:??? -> ?errorCode:??? -> ?message:??? -> 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