Why boto3.resource("dynamodb") does not have transact_write_items? #3081
Labels
duplicate
This issue is a duplicate.
dynamodb
feature-request
This issue requests a feature.
resources
Hi.
I'm writing an application using boto3 resource for DynamoDB to avoid writing the type of my attributes. So far so good, until I needed the
transact_write_items
operation to validate some business rules of aput_item
operation. And this operation is only available in theboto3.client("dynamodb")
.So it raises the question of why this feature is not available within the
resource
? I wouldn't like to set up two clients in my app just for this case of a transaction.The text was updated successfully, but these errors were encountered: