Module Values.ParameterizedStatementSource

Represents a PartiQL statement that uses parameters.

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

    A PartiQL statement that uses parameters.

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

    The parameter values.

    *)
  3. returnValuesOnConditionCheckFailure : ReturnValuesOnConditionCheckFailure.t option;
    (*

    An optional parameter that returns the item attributes for a PartiQL ParameterizedStatement 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:??? -> ?returnValuesOnConditionCheckFailure:??? -> statement:PartiQLStatement.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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