gpt4 book ai didi

amazon-dynamodb - 使用 aws cli 将全局二级索引添加到 DynamoDB 中的现有表

转载 作者:行者123 更新时间:2023-12-03 23:37:47 25 4
gpt4 key购买 nike

我似乎找不到有关如何使用 aws cli 将全局二级索引添加到 DynamoDB 中的现有表的示例。
这是我到目前为止从 docs 了解到的信息

不胜感激

最佳答案

这是更新表 document .

示例:

aws dynamodb update-table --table-name <tableName> --global-secondary-index-updates file://gsi-command.json

根据更新、创建或删除操作创建一个 JSON 文件:-

保留以下示例 JSON 中的操作之一(更新、创建或删除)并相应地更新属性定义

[
{
"Update": {
"IndexName": "string",
"ProvisionedThroughput": {
"ReadCapacityUnits": long,
"WriteCapacityUnits": long
}
},
"Create": {
"IndexName": "string",
"KeySchema": [
{
"AttributeName": "string",
"KeyType": "HASH"|"RANGE"
}
...
],
"Projection": {
"ProjectionType": "ALL"|"KEYS_ONLY"|"INCLUDE",
"NonKeyAttributes": ["string", ...]
},
"ProvisionedThroughput": {
"ReadCapacityUnits": long,
"WriteCapacityUnits": long
}
},
"Delete": {
"IndexName": "string"
}
}
...
]

关于amazon-dynamodb - 使用 aws cli 将全局二级索引添加到 DynamoDB 中的现有表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43080218/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com