A config rule that checks whether provisioned DynamoDB throughput is approaching the maximum limit for your account. By default, the rule checks if provisioned throughput exceeds a threshold of 80% of your account limits.
AWSTemplateFormatVersion: '2010-09-09'
Resources:
ConfigRule:
Type: 'AWS::Config::ConfigRule'
Properties:
ConfigRuleName: dynamodb-throughput-limit-check
Description: >-
A config rule that checks whether provisioned DynamoDB throughput is
approaching the maximum limit for your account. By default, the rule
checks if provisioned throughput exceeds a threshold of 80% of your
account limits.
InputParameters:
accountRCUThresholdPercentage: '80'
accountWCUThresholdPercentage: '80'
Scope:
ComplianceResourceTypes: []
Source:
Owner: AWS
SourceIdentifier: DYNAMODB_THROUGHPUT_LIMIT_CHECK
MaximumExecutionFrequency: TwentyFour_Hours
Parameters: {}
Metadata: {}
Conditions: {}