Я создал следующую таблицу с глобальным вторичным индексом в Em (представляющем электронную почту).
TableName : "Users",
KeySchema: [
{ AttributeName: "Ai", KeyType: "HASH"}, //Partition key
{ AttributeName: "Ui", KeyType: "RANGE" } //Sort key
],
AttributeDefinitions: [
{ AttributeName: "Ai", AttributeType: "S" },
{ AttributeName: "Ui", AttributeType: "S" },
{ AttributeName: "Em", AttributeType: "S" }
],
GlobalSecondaryIndexes: [
{
IndexName: 'EmailIndex',
KeySchema: [
{ AttributeName: 'Em', KeyType: "HASH" },
],
Projection: {
ProjectionType: 'ALL'
},
ProvisionedThroughput: {
ReadCapacityUnits: 1,
WriteCapacityUnits: 1
}
}
],
ProvisionedThroughput: {
ReadCapacityUnits: 1,
WriteCapacityUnits: 1
}
}
Из моего пакета node.js я пытаюсь запросить таблицу с помощью EmailIndex следующим образом:
const params = {
TableName: 'Users',
IndexName: 'EmailIndex',
Key: {
Em: email
}
}
try {
const data = await docClient.get(params).promise()
return data
} catch (error) {
throw error
}
Я получаю ответ:
{
"message": "The number of conditions on the keys is invalid",
"code": "ValidationException",
"time": "2018-07-02T10:33:13.313Z",
"requestId": "edc5f2e0-3c2b-4354-9342-4a96c74988a6",
"statusCode": 400,
"retryable": false,
"retryDelay": 17.366914444025173
}
Я пытаюсь получить данные с адреса электронной почты. Что я делаю не так?