File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -306,6 +306,30 @@ Resources:
306306 - AttributeName : userEmail
307307 KeyType : HASH
308308
309+ RateLimiterTable :
310+ Type : " AWS::DynamoDB::Table"
311+ DeletionPolicy : " Delete"
312+ UpdateReplacePolicy : " Delete"
313+ Properties :
314+ BillingMode : " PAY_PER_REQUEST"
315+ TableName : infra-core-api-rate-limiter
316+ DeletionProtectionEnabled : true
317+ PointInTimeRecoverySpecification :
318+ PointInTimeRecoveryEnabled : false
319+ AttributeDefinitions :
320+ - AttributeName : PK
321+ AttributeType : S
322+ - AttributeName : SK
323+ AttributeType : S
324+ KeySchema :
325+ - AttributeName : PK
326+ KeyType : HASH
327+ - AttributeName : SK
328+ KeyType : RANGE
329+ TimeToLiveSpecification :
330+ AttributeName : ttl
331+ Enabled : true
332+
309333 EventRecordsTable :
310334 Type : " AWS::DynamoDB::Table"
311335 DeletionPolicy : " Retain"
You can’t perform that action at this time.
0 commit comments