Skip to content

Commit 81a91d2

Browse files
author
AWS
committed
Amazon ElastiCache Update: Added minimum capacity to Amazon ElastiCache Serverless. This feature allows customer to ensure minimum capacity even without current load
1 parent 9644c37 commit 81a91d2

File tree

2 files changed

+15
-5
lines changed

2 files changed

+15
-5
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"type": "feature",
3+
"category": "Amazon ElastiCache",
4+
"contributor": "",
5+
"description": "Added minimum capacity to Amazon ElastiCache Serverless. This feature allows customer to ensure minimum capacity even without current load"
6+
}

services/elasticache/src/main/resources/codegen-resources/service-2.json

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3362,15 +3362,16 @@
33623362
},
33633363
"DataStorage":{
33643364
"type":"structure",
3365-
"required":[
3366-
"Maximum",
3367-
"Unit"
3368-
],
3365+
"required":["Unit"],
33693366
"members":{
33703367
"Maximum":{
33713368
"shape":"IntegerOptional",
33723369
"documentation":"<p>The upper limit for data storage the cache is set to use.</p>"
33733370
},
3371+
"Minimum":{
3372+
"shape":"IntegerOptional",
3373+
"documentation":"<p>The lower limit for data storage the cache is set to use.</p>"
3374+
},
33743375
"Unit":{
33753376
"shape":"DataStorageUnit",
33763377
"documentation":"<p>The unit that the storage is measured in, in GB.</p>"
@@ -4320,11 +4321,14 @@
43204321
},
43214322
"ECPUPerSecond":{
43224323
"type":"structure",
4323-
"required":["Maximum"],
43244324
"members":{
43254325
"Maximum":{
43264326
"shape":"IntegerOptional",
43274327
"documentation":"<p>The configuration for the maximum number of ECPUs the cache can consume per second.</p>"
4328+
},
4329+
"Minimum":{
4330+
"shape":"IntegerOptional",
4331+
"documentation":"<p>The configuration for the minimum number of ECPUs the cache should be able consume per second.</p>"
43284332
}
43294333
},
43304334
"documentation":"<p>The configuration for the number of ElastiCache Processing Units (ECPU) the cache can consume per second.</p>"

0 commit comments

Comments
 (0)