18

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.

smac2020
  • 9,637
  • 4
  • 24
  • 38
ethrbunny
  • 10,379
  • 9
  • 69
  • 131

1 Answers1

44

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
    ...
gfv
  • 659
  • 5
  • 11