DynamoDB Update API response filter

0

Is it possible to somehow filter the API response received after updating an item in DynamoDB? With filter I mean something similar to the ProjectionExpression capability with a query operation, for example.

Even though the ReturnValues option does however provide a number of "filtering" options, it does however not permit selective attribute inclusion.

Is there perhaps another way to achieve this?

已提问 2 年前261 查看次数
2 回答
0

As you saw, you can only express what ReturnValues will accept: NONE, ALL_OLD, UPDATED_OLD, ALL_NEW, UPDATED_NEW

For details: https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_UpdateItem.html#API_UpdateItem_RequestSyntax

Why are you worried about returning too much?

AWS
已回答 2 年前
0

Many thanks for the speedy reply.

The update is looped to a query that initiates the process. Once an item is queried, the update functionality updates an attribute that then conditionally prevents future queries.

Preferably I would like to limit the client's access to attributes that are of relevance. There are also attributes that I will be using to record activities in the background, which without a ProjectionExpression functionality, I will now be sharing with the client.

It does not sound feasible to superficially update all the attributes that I would like to share with the client, by going the ReturnValue: UPDATED_NEW route. If that is the only option...

已回答 2 年前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则