This operation allows you to perform transactional reads or writes on data stored in DynamoDB, using PartiQL.
dynamodb_execute_transaction(TransactStatements, ClientRequestToken)
A list with the following syntax:
list(
Responses = list(
list(
Item = list(
list(
S = "string",
N = "string",
B = raw,
SS = list(
"string"
),
NS = list(
"string"
),
BS = list(
raw
),
M = list(
list()
),
L = list(
list()
),
NULL = TRUE|FALSE,
BOOL = TRUE|FALSE
)
)
)
)
)
[required] The list of PartiQL statements representing the transaction to run.
Set this value to get remaining results, if NextToken
was returned in
the statement response.
svc$execute_transaction(
TransactStatements = list(
list(
Statement = "string",
Parameters = list(
list(
S = "string",
N = "string",
B = raw,
SS = list(
"string"
),
NS = list(
"string"
),
BS = list(
raw
),
M = list(
list()
),
L = list(
list()
),
NULL = TRUE|FALSE,
BOOL = TRUE|FALSE
)
)
)
),
ClientRequestToken = "string"
)