Module Values.UnprocessedPreparedStatementNameSource

The name of a prepared statement that could not be returned.

Sourcetype nonrec t = {
  1. statementName : StatementName.t option;
    (*

    The name of a prepared statement that could not be returned due to an error.

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

    The error code returned when the request for the prepared statement failed.

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

    The error message containing the reason why the prepared statement could not be returned. The following error messages are possible: INVALID_INPUT - The name of the prepared statement that was provided is not valid (for example, the name is too long). STATEMENT_NOT_FOUND - A prepared statement with the name provided could not be found. UNAUTHORIZED - The requester does not have permission to access the workgroup that contains the prepared statement.

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