Values.PrepareQueryResponseSourceA synchronous operation that allows you to submit a query with parameters to be stored by Timestream for later running. Timestream only supports using this operation with ValidateOnly set to true.
type nonrec t = {queryString : QueryString.t option;The query string that you want prepare.
*)columns : SelectColumnList.t option;A list of SELECT clause columns of the submitted query string.
*)parameters : ParameterMappingList.t option;A list of parameters used in the submitted query string.
*)}type nonrec error = [ | `AccessDeniedException of AccessDeniedException.t| `InternalServerException of InternalServerException.t| `InvalidEndpointException of InvalidEndpointException.t| `ThrottlingException of ThrottlingException.t| `ValidationException of ValidationException.t| `Unknown_operation_error of string * string option ]val error_of_json :
string ->
Yojson.Safe.t ->
[> `AccessDeniedException of AccessDeniedException.t
| `InternalServerException of InternalServerException.t
| `InvalidEndpointException of InvalidEndpointException.t
| `ThrottlingException of ThrottlingException.t
| `Unknown_operation_error of string * string option
| `ValidationException of ValidationException.t ]val error_of_xml :
string ->
Awso.Xml.t ->
[> `AccessDeniedException of AccessDeniedException.t
| `InternalServerException of InternalServerException.t
| `InvalidEndpointException of InvalidEndpointException.t
| `ThrottlingException of ThrottlingException.t
| `Unknown_operation_error of string * string option
| `ValidationException of ValidationException.t ]val to_value :
t ->
[> `Structure of
(string
* [> `List of
[> `Structure of (string * Awso.Botodata.value) list ] list
| `String of QueryString.t ])
list ]