Would like to figure out how I can get to know if PITR is enabled.
for AWS Java.
checked for PointInTimeRecoverySpecification but no succes. Neither did using TableDescription.
Would like to figure out how I can get to know if PITR is enabled.
for AWS Java.
checked for PointInTimeRecoverySpecification but no succes. Neither did using TableDescription.
2
Answers
According to the documentation, you can use
DescribeContineousBackupsRequest
:https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_DescribeContinuousBackups.html
Reference: https://github.com/harshangp20/dynamoDBAudit/blob/094041168f6d105675f376c31275074b2c1dea45/src/main/java/org/lambda/service/DynamoDBCheckList.java#L317