import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { GetReusableDelegationSetRequest, GetReusableDelegationSetResponse } from "../models/models_0"; import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link GetReusableDelegationSetCommand}. */ export interface GetReusableDelegationSetCommandInput extends GetReusableDelegationSetRequest { } /** * @public * * The output of {@link GetReusableDelegationSetCommand}. */ export interface GetReusableDelegationSetCommandOutput extends GetReusableDelegationSetResponse, __MetadataBearer { } declare const GetReusableDelegationSetCommand_base: { new (input: GetReusableDelegationSetCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: GetReusableDelegationSetCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Retrieves information about a specified reusable delegation set, including the four * name servers that are assigned to the delegation set.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { Route53Client, GetReusableDelegationSetCommand } from "@aws-sdk/client-route-53"; // ES Modules import * // const { Route53Client, GetReusableDelegationSetCommand } = require("@aws-sdk/client-route-53"); // CommonJS import * // import type { Route53ClientConfig } from "@aws-sdk/client-route-53"; * const config = {}; // type is Route53ClientConfig * const client = new Route53Client(config); * const input = { // GetReusableDelegationSetRequest * Id: "STRING_VALUE", // required * }; * const command = new GetReusableDelegationSetCommand(input); * const response = await client.send(command); * // { // GetReusableDelegationSetResponse * // DelegationSet: { // DelegationSet * // Id: "STRING_VALUE", * // CallerReference: "STRING_VALUE", * // NameServers: [ // DelegationSetNameServers // required * // "STRING_VALUE", * // ], * // }, * // }; * * ``` * * @param GetReusableDelegationSetCommandInput - {@link GetReusableDelegationSetCommandInput} * @returns {@link GetReusableDelegationSetCommandOutput} * @see {@link GetReusableDelegationSetCommandInput} for command's `input` shape. * @see {@link GetReusableDelegationSetCommandOutput} for command's `response` shape. * @see {@link Route53ClientResolvedConfig | config} for Route53Client's `config` shape. * * @throws {@link DelegationSetNotReusable} (client fault) *

A reusable delegation set with the specified ID does not exist.

* * @throws {@link InvalidInput} (client fault) *

The input is not valid.

* * @throws {@link NoSuchDelegationSet} (client fault) *

A reusable delegation set with the specified ID does not exist.

* * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* * * @public */ export declare class GetReusableDelegationSetCommand extends GetReusableDelegationSetCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: GetReusableDelegationSetRequest; output: GetReusableDelegationSetResponse; }; sdk: { input: GetReusableDelegationSetCommandInput; output: GetReusableDelegationSetCommandOutput; }; }; }