如何在java中通过API创建一个启用了PITR的发电机数据库表??
这是我的create table请求
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
发布于 2021-02-15 17:57:00
使用单独的接口调用UpdateContinuousBackupsRequest来启用PITR。
Java调用映射到UpdateContinuousBackups AWS API。
https://stackoverflow.com/questions/66205206
复制相似问题