Amazon DynamoDB via CloudFormation - point in time recovery

8.4k views Asked by At

Is it possible to specify Point In Time Recovery for an Amazon DynamoDB table created via CloudFormation? I've been looking through the docs and user guide and haven't found anything useful yet.

1

There are 1 answers

0
gfv On

This is now possible with cloud formation by adding a PointInTimeRecoverySpecification to your cloud formation template.

Example:

  Type: 'AWS::DynamoDB::Table'
  Properties:
    TableName: MyTable
    PointInTimeRecoverySpecification:
      PointInTimeRecoveryEnabled: true
    ...