Jump to Content

This API Documentation is now deprecated

We are excited to announce our new API Documentation.

Class GetReusableDelegationSetLimitCommandProtected

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.

import { Route53Client, GetReusableDelegationSetLimitCommand } from "@aws-sdk/client-route-53"; // ES Modules import
// const { Route53Client, GetReusableDelegationSetLimitCommand } = require("@aws-sdk/client-route-53"); // CommonJS import
const 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
// };

Param

GetReusableDelegationSetLimitCommandInput

Returns

GetReusableDelegationSetLimitCommandOutput

See

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.

Hierarchy

Constructors

Properties

Methods

Constructors

Properties

Methods