dynamo-local
Number of attributes in key schema must match the number of attributes defined in attribute definitions
TL;DR Don’t include any non-key attribute definitions in AttributeDefinitions. DynamoDB is schemaless (except the key schema) That is to say, you do need to specify the key schema (attribute name and type) when you create the table. Well, you don’t need to specify any non-key attributes. You can put an item with any attribute later … Read more