Values.BatchStatementRequestSourceA PartiQL batch statement request.
type nonrec t = {statement : PartiQLStatement.t;A valid PartiQL statement.
*)parameters : PreparedStatementParameters.t option;The parameters associated with a PartiQL statement in the batch request.
*)consistentRead : ConsistentRead.t option;The read consistency of the PartiQL batch request.
*)returnValuesOnConditionCheckFailure : ReturnValuesOnConditionCheckFailure.t
option;An optional parameter that returns the item attributes for a PartiQL batch request operation that failed a condition check. There is no additional cost associated with requesting a return value aside from the small network and processing overhead of receiving a larger response. No read capacity units are consumed.
*)}val make :
?parameters:??? ->
?consistentRead:??? ->
?returnValuesOnConditionCheckFailure:??? ->
statement:PartiQLStatement.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Boolean of ConsistentRead.t
| `Enum of string
| `List of Awso.Botodata.value list
| `String of PartiQLStatement.t ])
list ]