Newbie for dynamodb and trying to get new lambda function to query table.
Can someone help me out and tell me what is wrong with the son that I am passing to the .query function. Client_ID is my hash key on the table(String)
{
"TableName": "table1",
"KeyConditions": {
"Client_ID": {
"ComparisonOperator": "EQ",
"AttributeValueList":[
{"S": "12345"}
]
}
}
}
When testing i get error back
"errorMessage": "Need to pass in a valid Condition Object."