Skip to content

Commit

Permalink
fix: allow DeletionProtectionEnabled (#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
perrin4869 authored Jul 16, 2024
1 parent bffcab9 commit 68cc9e6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -378,6 +378,9 @@ class ServerlessDynamoDBPlugin implements Plugin {
if (command['PointInTimeRecoverySpecification']) {
delete command['PointInTimeRecoverySpecification'];
}
if (command['DeletionProtectionEnabled']) {
delete command['DeletionProtectionEnabled'];
}
if (command['Tags']) {
delete command['Tags'];
}
Expand Down

0 comments on commit 68cc9e6

Please sign in to comment.