Module Values.ResourceNotFoundExceptionSource

Resource not found exception.

Sourcetype nonrec t = {
  1. message : LargeBoundedString.t option;
  2. code : LargeBoundedString.t option;
  3. resourceId : LargeBoundedString.t option;
    (*

    Resource ID not found error.

    *)
  4. resourceType : LargeBoundedString.t option;
    (*

    Resource type not found error.

    *)
}
Sourceval make : ?message:??? -> ?code:??? -> ?resourceId:??? -> ?resourceType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of LargeBoundedString.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