Created
November 21, 2015 21:44
-
-
Save andrew-templeton/1e2516ca6ef069b13687 to your computer and use it in GitHub Desktop.
Proposed CloudFormation custom resource interface for DynamoDB AutoScaler Resource
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"MyDynamoAutoScaler": { | |
"Type": "Custom::DynamoDBAutoScaling", | |
"Properties": { | |
"TableName": {"Ref": "MyDynamoTable"}, | |
"CheckInterval": 300, | |
"ScaleReadsUpAbove": 90, | |
"IncreaseReadsBy": 50, | |
"ScaleReadsDownBelow": 30, | |
"DecreaseReadsBy": 40, | |
"ScaleReadsUpAbove": 90, | |
"IncreaseWritesBy": 40, | |
"ScaleReadsDownBelow": 40, | |
"DecreaseWritesBy": 70 | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment