This rule ensures that DynamoDB tables have point-in-time recovery enabled.
Rule | DynamoDB table point-in-time recovery should be enabled |
Framework | NIST Cybersecurity Framework (CSF) v1.1 |
Severity | ✔ Low |
Rule Description:
DynamoDB table point-in-time recovery should be enabled for NIST Cybersecurity Framework (CSF) v1.
Enabling point-in-time recovery for DynamoDB tables helps in protecting your data from accidental or malicious deletions or corruptions. It allows you to restore your table to any point in time within a specified retention period, providing an added layer of data protection and recovery capabilities.
This rule specifically focuses on aligning with the NIST Cybersecurity Framework (CSF) v1, which provides guidelines and best practices for managing and securing organizational information systems.
Troubleshooting Steps (if applicable):
If you encounter any issues while enabling point-in-time recovery for your DynamoDB table, follow these troubleshooting steps:
If the issue persists after following these troubleshooting steps, consider reaching out to AWS support for further assistance.
Necessary Codes (if applicable):
There are no specific codes for enabling point-in-time recovery for DynamoDB tables. The feature can be enabled using the AWS Management Console, AWS CLI, or the AWS SDKs.
Step-by-Step Guide for Remediation:
To enable point-in-time recovery for your DynamoDB table in line with the NIST Cybersecurity Framework (CSF) v1, follow these steps:
AWS Management Console:
AWS CLI:
aws dynamodb update-continuous-backups --table-name <table-name> --point-in-time-recovery-specification PointInTimeRecoveryEnabled=true
--point-in-time-recovery-specification PointInTimeRecoveryEnabled=true,PointInTimeRecoveryRetentionPeriod=<retention-period>
parameter.AWS SDKs:
By following these steps, you will enable point-in-time recovery for your DynamoDB table, aligning with the NIST Cybersecurity Framework (CSF) v1. This will help protect your data and provide recovery capabilities in case of any accidental or malicious incidents.