我正在使用本地 Amazon Dynamo DB 并尝试将表创建为;身份证 | 起点1 | 端点 1 | 起点2 | 端点2 | 速度 | 距离
我尝试使用 CreateTable() 函数,但发现很难创建一个。我正在使用 .Net API。
谁能帮我解决这个问题。
我试过的示例代码是;
var response = client.CreateTable(new CreateTableRequest
{
TableName = tableName,
AttributeDefinitions = new List<AttributeDefinition>()
{
new AttributeDefinition
{
AttributeName = "Id",
AttributeType = "S"
},
new AttributeDefinition
{
AttributeName = "ReplyDateTime",
AttributeType = "S"
}
},
KeySchema = new List<KeySchemaElement>()
{
new KeySchemaElement()
{
AttributeName = "Id",
KeyType = "HASH"
},
new KeySchemaElement()
{
AttributeName = "ReplyDateTime",
KeyType = "RANGE"
}
},
ProvisionedThroughput = new ProvisionedThroughput
{
ReadCapacityUnits = 10,
WriteCapacityUnits = 5
}
});
对于 2 列,它工作正常。对于超过 2 列,如何实现?
谢谢和问候, 维杰