Values.StatementDataSourceThe SQL statement to run.
type nonrec t = {id : UUID.t option;The SQL statement identifier. This value is a universally unique identifier (UUID) generated by Amazon Redshift Data API.
*)queryString : StatementString.t option;The SQL statement.
*)queryStrings : StatementStringList.t option;One or more SQL statements. Each query string in the array corresponds to one of the queries in a batch query request.
*)secretArn : SecretArn.t option;The name or Amazon Resource Name (ARN) of the secret that enables access to the database.
*)status : StatusString.t option;The status of the SQL statement. An example is the that the SQL statement finished.
*)statementName : StatementNameString.t option;The name of the SQL statement.
*)createdAt : Timestamp.t option;The date and time (UTC) the statement was created.
*)updatedAt : Timestamp.t option;The date and time (UTC) that the statement metadata was last updated.
*)queryParameters : SqlParametersList.t option;The parameters used in a SQL statement.
*)isBatchStatement : Boolean.t option;A value that indicates whether the statement is a batch query request.
*)resultFormat : ResultFormatString.t option;The data format of the result of the SQL statement.
*)sessionId : UUID.t option;The session identifier of the query.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of Boolean.t
| `Enum of string
| `List of
[> `String of StatementString.t
| `Structure of (string * [> `String of ParameterName.t ]) list ]
list
| `String of UUID.t
| `Timestamp of Timestamp.t ])
list ]