import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { GetCheckerIpRangesRequest, GetCheckerIpRangesResponse } from "../models/models_0"; import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link GetCheckerIpRangesCommand}. */ export interface GetCheckerIpRangesCommandInput extends GetCheckerIpRangesRequest { } /** * @public * * The output of {@link GetCheckerIpRangesCommand}. */ export interface GetCheckerIpRangesCommandOutput extends GetCheckerIpRangesResponse, __MetadataBearer { } declare const GetCheckerIpRangesCommand_base: { new (input: GetCheckerIpRangesCommandInput): import("@smithy/smithy-client").CommandImpl; new (...[input]: [] | [GetCheckerIpRangesCommandInput]): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Route 53 does not perform authorization for this API because it retrieves information * that is already available to the public.

* *

* GetCheckerIpRanges still works, but we recommend that you download * ip-ranges.json, which includes IP address ranges for all Amazon Web Services * services. For more information, see IP Address Ranges * of Amazon Route 53 Servers in the Amazon Route 53 Developer * Guide.

*
* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { Route53Client, GetCheckerIpRangesCommand } from "@aws-sdk/client-route-53"; // ES Modules import * // const { Route53Client, GetCheckerIpRangesCommand } = 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 = {}; * const command = new GetCheckerIpRangesCommand(input); * const response = await client.send(command); * // { // GetCheckerIpRangesResponse * // CheckerIpRanges: [ // CheckerIpRanges // required * // "STRING_VALUE", * // ], * // }; * * ``` * * @param GetCheckerIpRangesCommandInput - {@link GetCheckerIpRangesCommandInput} * @returns {@link GetCheckerIpRangesCommandOutput} * @see {@link GetCheckerIpRangesCommandInput} for command's `input` shape. * @see {@link GetCheckerIpRangesCommandOutput} for command's `response` shape. * @see {@link Route53ClientResolvedConfig | config} for Route53Client's `config` shape. * * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* * * @public */ export declare class GetCheckerIpRangesCommand extends GetCheckerIpRangesCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: {}; output: GetCheckerIpRangesResponse; }; sdk: { input: GetCheckerIpRangesCommandInput; output: GetCheckerIpRangesCommandOutput; }; }; }