awslimitchecker.services.rds module¶
-
class
awslimitchecker.services.rds._RDSService(warning_threshold, critical_threshold, boto_connection_kwargs, quotas_client)[source]¶ Bases:
awslimitchecker.services.base._AwsServiceDescribes an AWS service and its limits, and provides methods to query current utilization.
Constructors of _AwsService subclasses must not make any external connections; these must be made lazily as needed in other methods. _AwsService subclasses should be usable without any external network connections.
Parameters: - warning_threshold (int) – the default warning threshold, as an integer percentage, for any limits without a specifically-set threshold.
- critical_threshold (int) – the default critical threshold, as an integer percentage, for any limits without a specifically-set threshold.
- boto_connection_kwargs (dict) – Dictionary of keyword arguments to pass to boto connection methods.
- quotas_client (
ServiceQuotasClientorNone) – Instance of ServiceQuotasClient
-
API_NAME_TO_LIMIT= {'AllocatedStorage': 'Storage quota (GB)', 'AuthorizationsPerDBSecurityGroup': 'Max auths per security group', 'DBClusterParameterGroups': 'DB Cluster Parameter Groups', 'DBClusters': 'DB Clusters', 'DBInstances': 'DB instances', 'DBParameterGroups': 'DB parameter groups', 'DBSecurityGroups': 'DB security groups', 'DBSubnetGroups': 'Subnet Groups', 'EventSubscriptions': 'Event Subscriptions', 'ManualSnapshots': 'DB snapshots per user', 'OptionGroups': 'Option Groups', 'ReadReplicasPerMaster': 'Read replicas per master', 'ReservedDBInstances': 'Reserved Instances', 'SubnetsPerDBSubnetGroup': 'Subnets per Subnet Group'}¶
-
__module__= 'awslimitchecker.services.rds'¶
-
_update_limits_from_api()[source]¶ Query RDS’s DescribeAccountAttributes API action, and update limits with the quotas returned. Updates
self.limits.We ignore the usage information from the API,
-
api_name= 'rds'¶
-
find_usage()[source]¶ Determine the current usage for each limit of this service, and update corresponding Limit via
_add_current_usage().
-
get_limits()[source]¶ Return all known limits for this service, as a dict of their names to
AwsLimitobjects.Returns: dict of limit names to AwsLimitobjectsReturn type: dict
-
quotas_service_code= 'rds'¶
-
required_iam_permissions()[source]¶ Return a list of IAM Actions required for this Service to function properly. All Actions will be shown with an Effect of “Allow” and a Resource of “*”.
Returns: list of IAM Action strings Return type: list
-
service_name= 'RDS'¶