3
属性定义不一致
我在Cloudformation UI中使用以下模板来创建dynamoDB表。我想创建一个表,其中PrimaryKey作为ID,sortKey作为Value { "AWSTemplateFormatVersion" : "2010-09-09", "Description" : "DB Description", "Resources" : { "TableName" : { "Type" : "AWS::DynamoDB::Table", "Properties" : { "AttributeDefinitions": [ { "AttributeName" : "ID", "AttributeType" : "S" }, { "AttributeName" : "Value", "AttributeType" : "S" } ], "KeySchema": [ { "AttributeName": "ID", "KeyType": "HASH" } ] …