python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
How to scan/query dynamodb list in php to check if value exists?
My table looks
{
"ID": {
"S": "123456"
},
"info_id": {
"L": [
{
"S": "7CDA"
},
{
&...
STACK_MIN
Votes: 0
Answers: 1
Incrementing DynamoDB value using AWS SDK v3
I'm attempting to migrate my v2 Lambdas to v3, and I'm having some trouble incrementing a value. Here's my v2 method:
const params = {
TableName: process.env.USER_TABLE_NAME!,
Key: { UID },
...
Jonathan
Votes: 0
Answers: 1
Using millisecond timestamp as the global secondary index in DynamodDb for range queries?
We have a Dynamodb table Events with about 50 million records that look like this:
{
"id": "1yp3Or0KrPUBIC",
"event_time": 1632934672534,
"attr1" : 1,
"...
J-Deq87
Votes: 0
Answers: 2
DynamoDB: How to specify version attribute through schema
@DynamoDBVersionAttribute
private long version;
We are not using annotations in our project. So for every model, we have a schema definition. I am not sure how to specify a version attribute fi...

SRI PREM
Votes: 0
Answers: 2