1 回答
- 最新
- 投票最多
- 评论最多
0
【以下的回答经过翻译处理】 要创建DynamoDB全局表的V2019版本,您需要使用CreateTable
API,而不是CreateGlobalTable
API。
当DynamoDB升级到v2019时,它与表类对齐,这就是您看到使用全局表类创建v2017的原因。
一旦您创建表,就调用UpdateTable
并指定ReplicaUpdates。
aws dynamodb create-table \
--table-name custT \
--attribute-definitions AttributeName=pk,AttributeType=S AttributeName=sk,AttributeType=S \
--key-schema AttributeName=pk,KeyType=HASH AttributeName=sk,KeyType=RANGE \
--billing-mode PAY_PER_REQUEST
aws dynamodb wait table-exists \
--table-name custT
aws dynamodb update-table \
--table-name custT \
--replica-updates '[{"Create": {"RegionName": "eu-west-2"}}]'
相关内容
- AWS 官方已更新 2 年前
- AWS 官方已更新 7 个月前