Module Values.PartialFailureSource

This array is empty if the API operation was successful for all the rules specified in the request. If the operation could not process one of the rules, the following data is returned for each of those rules.

Sourcetype nonrec t = {
  1. failureResource : FailureResource.t option;
    (*

    The specified rule that could not be deleted.

    *)
  2. exceptionType : ExceptionType.t option;
    (*

    The type of error.

    *)
  3. failureCode : FailureCode.t option;
    (*

    The code of the error.

    *)
  4. failureDescription : FailureDescription.t option;
    (*

    A description of the error.

    *)
}
Sourceval make : ?failureResource:??? -> ?exceptionType:??? -> ?failureCode:??? -> ?failureDescription:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of FailureResource.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