Package Exports
- serverless-plugin-dynamodb-pitr
- serverless-plugin-dynamodb-pitr/lib/index.js
- serverless-plugin-dynamodb-pitr/lib/index.mjs
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (serverless-plugin-dynamodb-pitr) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
serverless-plugin-dynamodb-pitr
A Serverless plugin to easily enable point in time recovery of DynamoDB Table
Installation
npm install --save-dev serverless-plugin-dynamodb-pitr
# or
yarn add --dev serverless-plugin-dynamodb-pitr
Usage
plugins:
- serverless-plugin-dynamodb-pitr
custom:
dynamodbPitr:
ignore: # Optionally - select tables to disable point in time recovery
- TableB
- TableD
resources:
Resources:
TableA: # enabled point in time recovery without PointInTimeRecoverySpecification
Type: AWS::DynamoDB::Table
TableB: # disabled
Type: AWS::DynamoDB::Table
TableC: # enabled point in time recovery without PointInTimeRecoverySpecification
Type: AWS::DynamoDB::Table
TableD: # disabled
Type: AWS::DynamoDB::Table
TableE: # enabled point in time recovery without PointInTimeRecoverySpecification
Type: AWS::DynamoDB::Table
License
MIT © kobanyan