We are excited to announce our new API Documentation.
Protected
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.
Use a bare-bones client and the command you need to make an API call.
import { Route53Client, GetReusableDelegationSetLimitCommand } from "@aws-sdk/client-route-53"; // ES Modules import// const { Route53Client, GetReusableDelegationSetLimitCommand } = require("@aws-sdk/client-route-53"); // CommonJS importconst client = new Route53Client(config);const input = { // GetReusableDelegationSetLimitRequest Type: "MAX_ZONES_BY_REUSABLE_DELEGATION_SET", // required DelegationSetId: "STRING_VALUE", // required};const command = new GetReusableDelegationSetLimitCommand(input);const response = await client.send(command);// { // GetReusableDelegationSetLimitResponse// Limit: { // ReusableDelegationSetLimit// Type: "MAX_ZONES_BY_REUSABLE_DELEGATION_SET", // required// Value: Number("long"), // required// },// Count: Number("long"), // required// };
GetReusableDelegationSetLimitCommandInput
GetReusableDelegationSetLimitCommandOutput
input
response
config
InvalidInput (client fault)
The input is not valid.
NoSuchDelegationSet (client fault)
A reusable delegation set with the specified ID does not exist.
Route53ServiceException
Base exception class for all service exceptions from Route53 service.
Readonly
Static
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.
Example
Use a bare-bones client and the command you need to make an API call.
Param
GetReusableDelegationSetLimitCommandInput
Returns
GetReusableDelegationSetLimitCommandOutput
See
input
shape.response
shape.config
shape.Throws
InvalidInput (client fault)
The input is not valid.
Throws
NoSuchDelegationSet (client fault)
A reusable delegation set with the specified ID does not exist.
Throws
Route53ServiceException
Base exception class for all service exceptions from Route53 service.