Learn R Programming

paws.database (version 0.1.12)

dynamodb_execute_transaction: This operation allows you to perform transactional reads or writes on data stored in DynamoDB, using PartiQL

Description

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

Usage

dynamodb_execute_transaction(TransactStatements, ClientRequestToken)

Value

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

Arguments

TransactStatements

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

ClientRequestToken

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

Request syntax

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