I have a method that's making a call to a table with the following schema: userId: string | sessionId: string | orders: list Here's the following code ...
I have a method that's making a call to a table with the following schema: userId: string | sessionId: string | orders: list Here's the following code ...
I have an external API to synchronize all the Stock Symbols from all markets (NASDAQ, NYSE...). I have an AWS Lambda to get this data from the externa ...
Current situation: I have an AWS API Gateway referencing some AWS Lambdas, and some Lambdas querying a DynamoDB instance. All of the above are creat ...
In dynamoose v2: T extends Document; model: ModelType<T>; const attributes: string[] = model.schemas[0].attributes(); In this way I get the at ...
Really new to python and coding in general - would really help if someone could point me in the right direction with some code. So to start off with ...
We're planning to add a few updates in Lambda Function which has been set as the trigger for DynamoDB New item Events DynamoDB --> DynamoDB Stream ...
I have a dynamodb table of events that have specified start and end times. These events can be happening in realtime, in which case, the end timestamp ...
This is the data I receive which inserts into my dynamodb table perfectly fine as seen in the image below. However, I want it to be sorted into mul ...
I've watched this video and I was thinking about the Single Table Design. Is it a good idea to merge these two tables into one, just like the example ...
As I come from RDBM background I am bit confuse with DynamoDB, how to write this query. Problem : need to filter out those data which is more than 15 ...
The access patterns that I'm interested in is the last item for a given exchange and an account name. First of all, it seems to be working as expec ...
I have a problem that I do not understand. With node 18.13.0, I am not able to use Dynamodb locally. I always get this error: "message": "UnknownEndp ...
The following DynamoDB table has a partition key equal to date so I could easily query day by day. I know items with the same partition key are stored ...
I have an environment where my DynamoDB table is central to a few services (a couple of lambdas, kinesis and firehoses). All of that is managed by AWS ...
I have a below aws lambda code which is basically for ONTAP FileSystem monitoring and works if I do not integrate that to Dynamodb, while using this f ...
data is present is dynamodb and timestamp is integers and coming in the millisecond I just wanted that how can I solve this, suppose the user ask for ...
I am working with AWS Lambda Function and want to integrate them with Dynamo-db to keep the track of my cloudwatch data matrix into it in order to kee ...
I know dynamodb query has limitation on maximum response data size is 1MB. But does it have limitation on the input filter parameter? I may need to se ...
I have a function that takes user input and directly passes it to the put function Is it secure to use user input as an Amazon DynamoDB partition k ...
I'm trying to encrypt data being saved into a dynamo table. This is production PII data that shouldn't be visible even to someone with permissions to ...