import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ListGlobalResolversInput, ListGlobalResolversOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link ListGlobalResolversCommand}. */ export interface ListGlobalResolversCommandInput extends ListGlobalResolversInput { } /** * @public * * The output of {@link ListGlobalResolversCommand}. */ export interface ListGlobalResolversCommandOutput extends ListGlobalResolversOutput, __MetadataBearer { } declare const ListGlobalResolversCommand_base: { new (input: ListGlobalResolversCommandInput): import("@smithy/core/client").CommandImpl; new (...[input]: [] | [ListGlobalResolversCommandInput]): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Lists all Route 53 Global Resolver instances in your account with pagination support.

Route 53 Global Resolver is a global service that supports resolvers in multiple Amazon Web Services Regions but you must specify the US East (Ohio) Region to create, update, or otherwise work with Route 53 Global Resolver resources. That is, for example, specify --region us-east-2 on Amazon Web Services CLI commands.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { Route53GlobalResolverClient, ListGlobalResolversCommand } from "@aws-sdk/client-route53globalresolver"; // ES Modules import * // const { Route53GlobalResolverClient, ListGlobalResolversCommand } = require("@aws-sdk/client-route53globalresolver"); // CommonJS import * // import type { Route53GlobalResolverClientConfig } from "@aws-sdk/client-route53globalresolver"; * const config = {}; // type is Route53GlobalResolverClientConfig * const client = new Route53GlobalResolverClient(config); * const input = { // ListGlobalResolversInput * maxResults: Number("int"), * nextToken: "STRING_VALUE", * }; * const command = new ListGlobalResolversCommand(input); * const response = await client.send(command); * // { // ListGlobalResolversOutput * // nextToken: "STRING_VALUE", * // globalResolvers: [ // GlobalResolvers // required * // { // GlobalResolversItem * // id: "STRING_VALUE", // required * // arn: "STRING_VALUE", // required * // clientToken: "STRING_VALUE", // required * // dnsName: "STRING_VALUE", // required * // observabilityRegion: "STRING_VALUE", * // name: "STRING_VALUE", // required * // description: "STRING_VALUE", * // regions: [ // Regions // required * // "STRING_VALUE", * // ], * // createdAt: new Date("TIMESTAMP"), // required * // updatedAt: new Date("TIMESTAMP"), // required * // status: "CREATING" || "OPERATIONAL" || "UPDATING" || "DELETING", // required * // ipv4Addresses: [ // IPv4Addresses // required * // "STRING_VALUE", * // ], * // ipv6Addresses: [ // IPv6Addresses * // "STRING_VALUE", * // ], * // ipAddressType: "IPV4" || "DUAL_STACK", * // }, * // ], * // }; * * ``` * * @param ListGlobalResolversCommandInput - {@link ListGlobalResolversCommandInput} * @returns {@link ListGlobalResolversCommandOutput} * @see {@link ListGlobalResolversCommandInput} for command's `input` shape. * @see {@link ListGlobalResolversCommandOutput} for command's `response` shape. * @see {@link Route53GlobalResolverClientResolvedConfig | config} for Route53GlobalResolverClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

You don't have permission to perform this operation. Check your IAM permissions and try again.

* * @throws {@link InternalServerException} (server fault) *

An internal server error occurred. Try again later.

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

The request was throttled due to too many requests. Wait a moment and try again.

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

The input parameters are invalid. Check the parameter values and try again.

* * @throws {@link Route53GlobalResolverServiceException} *

Base exception class for all service exceptions from Route53GlobalResolver service.

* * * @public */ export declare class ListGlobalResolversCommand extends ListGlobalResolversCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListGlobalResolversInput; output: ListGlobalResolversOutput; }; sdk: { input: ListGlobalResolversCommandInput; output: ListGlobalResolversCommandOutput; }; }; }