คำถามติดแท็ก dynamo-local

3
จำนวนแอ็ตทริบิวต์ในคีย์สคีมาต้องตรงกับจำนวนแอ็ตทริบิวต์ที่กำหนดไว้ในนิยามแอ็ตทริบิวต์
ฉันกำลังพยายามสร้างตารางง่ายๆโดยใช้ DynamoDB javascript shell และฉันได้รับข้อยกเว้นนี้: { "message": "The number of attributes in key schema must match the number of attributes defined in attribute definitions.", "code": "ValidationException", "time": "2015-06-16T10:24:23.319Z", "statusCode": 400, "retryable": false } ด้านล่างนี้คือตารางที่ฉันพยายามสร้าง: var params = { TableName: 'table_name', KeySchema: [ { AttributeName: 'hash_key_attribute_name', KeyType: 'HASH', }, ], AttributeDefinitions: …
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.