This operation allows you to perform reads and singleton writes on data stored in DynamoDB, using PartiQL.
dynamodb_execute_statement(Statement, Parameters, ConsistentRead,
NextToken)
A list with the following syntax:
list(
Items = list(
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
)
)
),
NextToken = "string"
)
[required] The PartiQL statement representing the operation to run.
The parameters for the PartiQL statement, if any.
The consistency of a read operation. If set to true
, then a strongly
consistent read is used; otherwise, an eventually consistent read is
used.
Set this value to get remaining results, if NextToken
was returned in
the statement response.
svc$execute_statement(
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
)
),
ConsistentRead = TRUE|FALSE,
NextToken = "string"
)