Skip to main content

reusable_delegation_set_limits

Creates, updates, deletes, gets or lists a reusable_delegation_set_limits resource.

Overview

Namereusable_delegation_set_limits
TypeResource
Idaws.route53.reusable_delegation_set_limits

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
countintegerThe current number of hosted zones that you can associate with the specified reusable delegation set.
limitstringThe current setting for the limit on hosted zones that you can associate with the specified reusable delegation set.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_reusable_delegation_set_limitselecttype, id, regionGets the maximum number of hosted zones that you can associate with the specified reusable delegation set. For the default limit, see Limits in the Amazon Route 53 Developer Guide. To request a higher limit, open a case.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
idstringThe ID of the delegation set that you want to get the limit for.
regionstringAWS region (default: us-east-1)
typestringSpecify MAX_ZONES_BY_REUSABLE_DELEGATION_SET to get the maximum number of hosted zones that you can associate with the specified reusable delegation set.

SELECT examples

Gets the maximum number of hosted zones that you can associate with the specified reusable delegation set. For the default limit, see Limits in the Amazon Route 53 Developer Guide. To request a higher limit, open a case.

SELECT
count,
limit
FROM aws.route53.reusable_delegation_set_limits
WHERE type = '{{ type }}' -- required
AND id = '{{ id }}' -- required
AND region = '{{ region }}' -- required
;