aws.route53.get_hosted_zone_limit
Example SQL Queries
SELECT * FROMaws.route53.get_hosted_zone_limitWHERE"type" = 'VALUE'AND "hosted_zone_id" = 'VALUE';Description
Gets the specified limit for a specified hosted zone, for example, the maximum number of records that you can create in the hosted zone.
For the default limit, see Limits in the Amazon Route 53 Developer Guide. To request a higher limit, open a case.
Table Definition
| Column Name | Column Data Type |
|---|---|
| hosted_zone_id Required Input Column The ID of the hosted zone that you want to get a limit for. | VARCHAR |
| type Required Input Column The limit that you want to get. Valid values include the following:
| VARCHAR |
| _aws_profile Input Column The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( |
Show child fields
| |
| count The current number of entities that you have created of the specified type. For example, if you specified MAX_RRSETS_BY_ZONE for the value of Type in the request, the value of Count is the current number of records that you have created in the specified hosted zone. | BIGINT |
| limit The current setting for the specified limit. For example, if you specified MAX_RRSETS_BY_ZONE for the value of Type in the request, the value of Limit is the maximum number of records that you can create in the specified hosted zone. | STRUCT( |
Show child fields
| |