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

Gets the specified limit for the current account, for example, the maximum number of * health checks that you can create using the account.

*

For the default limit, see Limits in the * Amazon Route 53 Developer Guide. To request a higher limit, * open a case.

* *

You can also view account limits in Amazon Web Services Trusted Advisor. Sign in to * the Amazon Web Services Management Console and open the Trusted Advisor console at https://console.aws.amazon.com/trustedadvisor/. Then choose Service limits in the navigation pane.

*
* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { Route53Client, GetAccountLimitCommand } from "@aws-sdk/client-route-53"; // ES Modules import * // const { Route53Client, GetAccountLimitCommand } = 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 = { // GetAccountLimitRequest * Type: "MAX_HEALTH_CHECKS_BY_OWNER" || "MAX_HOSTED_ZONES_BY_OWNER" || "MAX_TRAFFIC_POLICY_INSTANCES_BY_OWNER" || "MAX_REUSABLE_DELEGATION_SETS_BY_OWNER" || "MAX_TRAFFIC_POLICIES_BY_OWNER", // required * }; * const command = new GetAccountLimitCommand(input); * const response = await client.send(command); * // { // GetAccountLimitResponse * // Limit: { // AccountLimit * // Type: "MAX_HEALTH_CHECKS_BY_OWNER" || "MAX_HOSTED_ZONES_BY_OWNER" || "MAX_TRAFFIC_POLICY_INSTANCES_BY_OWNER" || "MAX_REUSABLE_DELEGATION_SETS_BY_OWNER" || "MAX_TRAFFIC_POLICIES_BY_OWNER", // required * // Value: Number("long"), // required * // }, * // Count: Number("long"), // required * // }; * * ``` * * @param GetAccountLimitCommandInput - {@link GetAccountLimitCommandInput} * @returns {@link GetAccountLimitCommandOutput} * @see {@link GetAccountLimitCommandInput} for command's `input` shape. * @see {@link GetAccountLimitCommandOutput} for command's `response` shape. * @see {@link Route53ClientResolvedConfig | config} for Route53Client's `config` shape. * * @throws {@link InvalidInput} (client fault) *

The input is not valid.

* * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* * * @public */ export declare class GetAccountLimitCommand extends GetAccountLimitCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: GetAccountLimitRequest; output: GetAccountLimitResponse; }; sdk: { input: GetAccountLimitCommandInput; output: GetAccountLimitCommandOutput; }; }; }