1

如何通过java中的API创建一个启用了PITR的dynamo db表?

这是我的创建表请求

CreateTableRequest createTableRequest = new CreateTableRequest()
                .withTableName(properties.get(TABLE_NAME).textValue())
                .withKeySchema(this.buildKeySchema(properties))
                .withAttributeDefinitions(this.buildAttributeDefinitions(properties))
                .withProvisionedThroughput(this.buildProvisionedThroughput(properties))
                .withGlobalSecondaryIndexes(this.buildGlobalSecondaryIndex(properties))
                .withBillingMode(properties.get(BILLING_MODE).textValue());

我想添加 PITR 启用

4

1 回答 1

1

使用单独的 api 调用UpdateContinuousBackupsRequest启用 PITR 。

Java 调用映射到UpdateContinuousBackups AWS API。

于 2021-02-15T09:57:00.197 回答