gpt4 book ai didi

amazon-dynamodb - Serverless dynamodb 支持连续备份

转载 作者:行者123 更新时间:2023-12-02 20:02:30 25 4
gpt4 key购买 nike

使用无服务器框架时如何为 DynamoDB 表启用连续备份?

理想情况下,我会在 serverless.yml 中定义一些内容来启用自动 DynamoDB 备份

最佳答案

它有点隐藏在几个文档中,但这可以通过在 serverless.yml 文件的 resources 部分中定义 PointInTimeRecoverySpecification 来完成,例如

resources:
Resources:
developers:
Type: AWS::DynamoDB::Table
Properties:
TableName: myTable
AttributeDefinitions:
- AttributeName: myId
AttributeType: S
KeySchema:
- AttributeName: myId
KeyType: HASH
ProvisionedThroughput:
ReadCapacityUnits: 1
WriteCapacityUnits: 1
PointInTimeRecoverySpecification:
PointInTimeRecoveryEnabled: true

关于amazon-dynamodb - Serverless dynamodb 支持连续备份,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55499975/

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