I am planning to create dynamoDB table with 3 columns
Req ID | ISIN | MKEY | Date |
---|---|---|---|
A1 | 111 | U111 | 03/07/24 |
A1 | 222 | U222 | 03/07/24 |
A2 | 333 | U333 | 03/07/24 |
Assuming I loaded these records today at same time. I wanted to trigger dynamodb streams twice here – One for A1 and one for A2, And not for each record insert. Is it possible to do that? MKEY is kind of unique key or PK
As per my knowledge ddb streams capture the record and attribute level updates. this is how aws keeps the global tables in sync. Not sure what I have specified will work.