I am using and starting to understand AWS for use in my objective-c ios app. I have migrated from parse and now am learning to use NoSQL/DynamoDB to store all my data. I have both the aws-sdk and crypto in use in AWS Lambda functions (but am open to others).
How do I create objectIds that are unique for my database objects (like parse used like 10 alphanumeric characters per each record)?
Say I have a bunch of pictures being uploaded via my app and I want a unique id for each. What's the best way to do this for DynamoDB?
I would also hope that the picture object id could also have a secondary index of the userid. Thanks.