Learn R Programming

paws.database (version 0.1.12)

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

Description

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

Usage

dynamodb_batch_execute_statement(Statements)

Value

A list with the following syntax:

list(
  Responses = list(
    list(
      Error = list(
        Code = "ConditionalCheckFailed"|"ItemCollectionSizeLimitExceeded"|"RequestLimitExceeded"|"ValidationError"|"ProvisionedThroughputExceeded"|"TransactionConflict"|"ThrottlingError"|"InternalServerError"|"ResourceNotFound"|"AccessDenied"|"DuplicateItem",
        Message = "string"
      ),
      TableName = "string",
      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
        )
      )
    )
  )
)

Arguments

Statements

[required] The list of PartiQL statements representing the batch to run.

Request syntax

svc$batch_execute_statement(
  Statements = 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
        )
      ),
      ConsistentRead = TRUE|FALSE
    )
  )
)