Module Values.ResourceNotFoundExceptionSource

The requested resource could not be found.

Sourcetype nonrec t = {
  1. message : String_.t option;
  2. resourceType : ResourceType.t option;
    (*

    The type of resource that was not found.

    *)
  3. referencedBy : StringMap.t option;
    (*

    A map indicating which parameters in the request reference the resource that was not found.

    *)
}
Sourceval make : ?message:??? -> ?resourceType:??? -> ?referencedBy:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of String_.t ] * [> `String of String_.t ]) 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