I have a String Set attribute i.e SS in a dynamodb table. I need to scan the database to check the value present in the any one list of the items.
Which comparison operator should I use for this scan?
example the db has items like this:
- name
- [email1, email2]
- phone
I need to search for a items containing a particular email say email1 alone not giving the entire tuple.
email1as the single e-mail of the set or to find all items containingemail1in the set and return only this value ?