Module Values.BatchStatementRequestSource

A PartiQL batch statement request.

Sourcetype nonrec t = {
  1. statement : PartiQLStatement.t;
    (*

    A valid PartiQL statement.

    *)
  2. parameters : PreparedStatementParameters.t option;
    (*

    The parameters associated with a PartiQL statement in the batch request.

    *)
  3. consistentRead : ConsistentRead.t option;
    (*

    The read consistency of the PartiQL batch request.

    *)
  4. 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.

    *)
}
Sourceval context_ : string
Sourceval make : ?parameters:??? -> ?consistentRead:??? -> ?returnValuesOnConditionCheckFailure:??? -> statement:PartiQLStatement.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of ConsistentRead.t | `Enum of string | `List of Awso.Botodata.value list | `String of PartiQLStatement.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