Module Values.BatchStatementResponseSource

A PartiQL batch statement response..

Sourcetype nonrec t = {
  1. error : BatchStatementError.t option;
    (*

    The error associated with a failed PartiQL batch statement.

    *)
  2. tableName : TableName.t option;
    (*

    The table name associated with a failed PartiQL batch statement.

    *)
  3. item : AttributeMap.t option;
    (*

    A DynamoDB item associated with a BatchStatementResponse

    *)
}
Sourceval make : ?error:??? -> ?tableName:??? -> ?item:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of AttributeName.t ] * Awso.Botodata.value) list | `String of TableName.t | `Structure of (string * [> `Enum of string | `Map of ([> `String of AttributeName.t ] * Awso.Botodata.value) list | `String of String_.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