Module Values.ResourceNotFoundExceptionSource

The resource was not found.

Sourcetype nonrec t = {
  1. message : ExceptionMessage.t option;
    (*

    The container for the exception message.

    *)
  2. resourceId : ResourceId.t option;
    (*

    The resourceId of the resource that caused the exception.

    *)
  3. resourceType : ResourceType.t option;
    (*

    The resourceType of the resource that caused the exception.

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