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?

preguntada hace 2 años261 visualizaciones
2 Respuestas
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
respondido hace 2 años
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...

respondido hace 2 años

No has iniciado sesión. Iniciar sesión para publicar una respuesta.

Una buena respuesta responde claramente a la pregunta, proporciona comentarios constructivos y fomenta el crecimiento profesional en la persona que hace la pregunta.

Pautas para responder preguntas