I was just learning AWS DynamoDB in CLI. i was specifically performing put-item using command
aws dynamodb put-item --table-name new --item file://item.json. I have successfully configured the IAM credentials and I'm also able to get the responce back using
aws dynamodb list-tables :
{
"TableNames": [
"new",
"test"
]
}
ERROR:
I'm specifically this error: An error occurred (ValidationException) when calling the PutItem operation: One or more parameter values were invalid: Missing the key newid in the item
can anyone please guide me how to get out of this and fix this error?

