Skip to content

Commit

Permalink
update doc on the number of transactions supported
Browse files Browse the repository at this point in the history
  • Loading branch information
d-tsuji authored and guregu committed Aug 9, 2020
1 parent 3f0d72d commit 5dc0692
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tx.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ type getTxOp interface {
}

// GetTx is a transaction to retrieve items.
// It can contain up to 10 operations and works across multiple tables.
// It can contain up to 25 operations and works across multiple tables.
// GetTx is analogous to TransactGetItems in DynamoDB's API.
// See: https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_TransactGetItems.html
type GetTx struct {
Expand Down Expand Up @@ -162,7 +162,7 @@ type writeTxOp interface {
}

// WriteTx is a transaction to delete, put, update, and check items.
// It can contain up to 10 operations and works across multiple tables.
// It can contain up to 25 operations and works across multiple tables.
// Two operations cannot target the same item.
// WriteTx is analogous to TransactWriteItems in DynamoDB's API.
// See: https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_TransactWriteItems.html
Expand Down

0 comments on commit 5dc0692

Please sign in to comment.