Amazon web services 如何通过API创建启用了PITR的表?

Amazon web services 如何通过API创建启用了PITR的表?,amazon-web-services,amazon-dynamodb,point-in-time,Amazon Web Services,Amazon Dynamodb,Point In Time,如何通过java中的API创建启用PITR的dynamo db表 这是我的创建表请求 CreateTableRequest createTableRequest = new CreateTableRequest() .withTableName(properties.get(TABLE_NAME).textValue()) .withKeySchema(this.buildKeySchema(properties))

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

使用seprate api调用启用PITR

Java调用映射到AWSAPI