"The provided key element does not match the schema" error when getting an item from DynamoDB "The provided key element does not match the schema" error when getting an item from DynamoDB python python

"The provided key element does not match the schema" error when getting an item from DynamoDB


Your table schema has both hash key and sort key defined. When using DynamoDB GetItem you must provide both of them, here is an excerpt from documentation

For the primary key, you must provide all of the attributes. For example, with a simple primary key, you only need to provide a value for the partition key. For a composite primary key, you must provide values for both the partition key and the sort key.

So given your example, here is how get_item parameters should look like:

response = table.get_item(Key={'userId': "user2873", 'createdAt': "1489376547"})


One other thing that works is the following code below:

from boto3.dynamodb.conditions import Keyresult = table.query(        KeyConditionExpression=Key('userId').eq('user2873')    )


I have also got the same issue.The solution to this is :

While creating the Table, define only usrID in your schema as Hash Key. [I mean Single Primary Key]

Then you can call get item based on your usrID.If you are defining usrId and createdAt in your Table Schema as Hash and Sort Key.[I mean composite primary key] You have to provide both while calling getItem.