We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 527ad68 + 26a1156 commit 1115b69Copy full SHA for 1115b69
index.js
@@ -247,6 +247,10 @@ class ServerlessDynamodbLocal {
247
if (migration.TimeToLiveSpecification) {
248
delete migration.TimeToLiveSpecification;
249
}
250
+ if (migration.SSESpecification) {
251
+ migration.SSESpecification.Enabled = migration.SSESpecification.SSEEnabled;
252
+ delete migration.SSESpecification.SSEEnabled;
253
+ }
254
dynamodb.raw.createTable(migration, (err) => {
255
if (err) {
256
if (err.name === 'ResourceInUseException') {
0 commit comments