Learn R Programming

paws.database (version 0.1.12)

dynamodb_execute_statement: This operation allows you to perform reads and singleton writes on data stored in DynamoDB, using PartiQL

Description

This operation allows you to perform reads and singleton writes on data stored in DynamoDB, using PartiQL.

Usage

dynamodb_execute_statement(Statement, Parameters, ConsistentRead,
  NextToken)

Value

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"
)

Arguments

Statement

[required] The PartiQL statement representing the operation to run.

Parameters

The parameters for the PartiQL statement, if any.

ConsistentRead

The consistency of a read operation. If set to true, then a strongly consistent read is used; otherwise, an eventually consistent read is used.

NextToken

Set this value to get remaining results, if NextToken was returned in the statement response.

Request syntax

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"
)