TL;DR Create DynamoDB table. aws dynamodb create-table \ --table-name <Your table name> \ --attribute-definitions AttributeName=LockID,AttributeType=S \ --key-schema AttributeName=LockID,KeyType=HASH \ --provisioned-throughput ReadCapacityUnits=1,WriteCapacityUnits=1 Append