Module Values.FailedRemediationExceptionBatchSource

List of each of the failed remediation exceptions with specific reasons.

Sourcetype nonrec t = {
  1. failureMessage : String_.t option;
    (*

    Returns a failure message. For example, the auto-remediation has failed.

    *)
  2. failedItems : RemediationExceptions.t option;
    (*

    Returns remediation exception resource key object of the failed items.

    *)
}
Sourceval make : ?failureMessage:??? -> ?failedItems:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of ConfigRuleName.t | `Timestamp of Date.t ]) list ] list | `String of String_.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