如何通过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 启用