Module Values.UnprocessedNamedQueryIdSource

Information about a named query ID that could not be processed.

Sourcetype nonrec t = {
  1. namedQueryId : NamedQueryId.t option;
    (*

    The unique identifier of the named query.

    *)
  2. errorCode : ErrorCode.t option;
    (*

    The error code returned when the processing request for the named query failed, if applicable.

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

    The error message returned when the processing request for the named query failed, if applicable.

    *)
}
Sourceval make : ?namedQueryId:??? -> ?errorCode:??? -> ?errorMessage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NamedQueryId.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