タグ付けされた質問 「dynamo-local」

3
キースキーマの属性の数は、属性定義で定義された属性の数と一致する必要があります
DynamoDB JavaScriptシェルを使用して簡単なテーブルを作成しようとしていますが、次の例外が発生します。 { "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: [ { AttributeName: …
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.