Module Values.FailedConfigurationSource

A configuration ID paired with an error message.

Sourcetype nonrec t = {
  1. configurationId : ConfigurationId.t option;
    (*

    The unique identifier of the configuration the failed to delete.

    *)
  2. errorStatusCode : ErrorStatusCode.t option;
    (*

    The integer error code associated with the error message.

    *)
  3. errorMessage : ErrorMessage.t option;
    (*

    A descriptive message indicating why the associated configuration failed to delete.

    *)
}
Sourceval make : ?configurationId:??? -> ?errorStatusCode:??? -> ?errorMessage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of ErrorStatusCode.t | `String of ConfigurationId.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