Module Values.TransactWriteItemSource

A list of requests that can perform update, put, delete, or check operations on multiple items in one or more tables atomically.

Sourcetype nonrec t = {
  1. conditionCheck : ConditionCheck.t option;
    (*

    A request to perform a check item operation.

    *)
  2. put : Put.t option;
    (*

    A request to perform a PutItem operation.

    *)
  3. delete : Delete.t option;
    (*

    A request to perform a DeleteItem operation.

    *)
  4. update : Update.t option;
    (*

    A request to perform an UpdateItem operation.

    *)
}
Sourceval make : ?conditionCheck:??? -> ?put:??? -> ?delete:??? -> ?update:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Enum of string | `Map of ([> `String of AttributeName.t ] * Awso.Botodata.value) list | `String of TableArn.t ]) list ]) 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