jantman / awslimitchecker

A script and python package to check your AWS service limits and usage via boto3.
http://awslimitchecker.readthedocs.org/
GNU Affero General Public License v3.0
515 stars 187 forks source link

add support for Route 53 - GetAccountLimit - Gets the specified limit for the current account #579

Open vincentclee opened 1 year ago

vincentclee commented 1 year ago

Feature Request

On the Route53 Service, add a call to GetAccountLimit which gets the specified limit for the current account, for example, the maximum number of health checks that you can create using the account.

Available Limits

Example

$ aws route53 get-account-limit --type MAX_HEALTH_CHECKS_BY_OWNER
{
    "Limit": {
        "Type": "MAX_HEALTH_CHECKS_BY_OWNER",
        "Value": 200
    },
    "Count": 179
}

Thank You