reusable_delegation_set_limits
Creates, updates, deletes, gets or lists a reusable_delegation_set_limits resource.
Overview
| Name | reusable_delegation_set_limits |
| Type | Resource |
| Id | aws.route53.reusable_delegation_set_limits |
Fields
The following fields are returned by SELECT queries:
- get_reusable_delegation_set_limit
| Name | Datatype | Description |
|---|---|---|
count | integer | The current number of hosted zones that you can associate with the specified reusable delegation set. |
limit | string | The 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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_reusable_delegation_set_limit | select | type, id, region | 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. |
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.
| Name | Datatype | Description |
|---|---|---|
id | string | The ID of the delegation set that you want to get the limit for. |
region | string | AWS region (default: us-east-1) |
type | string | Specify 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
- get_reusable_delegation_set_limit
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
;