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

Gets information about a specified hosted zone including the four name servers * assigned to the hosted zone.

*

* returns the VPCs associated with the specified hosted zone and does not reflect the VPC * associations by Route 53 Profiles. To get the associations to a Profile, call the ListProfileAssociations API.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { Route53Client, GetHostedZoneCommand } from "@aws-sdk/client-route-53"; // ES Modules import * // const { Route53Client, GetHostedZoneCommand } = 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 = { // GetHostedZoneRequest * Id: "STRING_VALUE", // required * }; * const command = new GetHostedZoneCommand(input); * const response = await client.send(command); * // { // GetHostedZoneResponse * // HostedZone: { // HostedZone * // Id: "STRING_VALUE", // required * // Name: "STRING_VALUE", // required * // CallerReference: "STRING_VALUE", // required * // Config: { // HostedZoneConfig * // Comment: "STRING_VALUE", * // PrivateZone: true || false, * // }, * // ResourceRecordSetCount: Number("long"), * // LinkedService: { // LinkedService * // ServicePrincipal: "STRING_VALUE", * // Description: "STRING_VALUE", * // }, * // Features: { // HostedZoneFeatures * // AcceleratedRecoveryStatus: "ENABLING" || "ENABLE_FAILED" || "ENABLING_HOSTED_ZONE_LOCKED" || "ENABLED" || "DISABLING" || "DISABLE_FAILED" || "DISABLED" || "DISABLING_HOSTED_ZONE_LOCKED", * // FailureReasons: { // HostedZoneFailureReasons * // AcceleratedRecovery: "STRING_VALUE", * // }, * // }, * // }, * // DelegationSet: { // DelegationSet * // Id: "STRING_VALUE", * // CallerReference: "STRING_VALUE", * // NameServers: [ // DelegationSetNameServers // required * // "STRING_VALUE", * // ], * // }, * // VPCs: [ // VPCs * // { // VPC * // VPCRegion: "us-east-1" || "us-east-2" || "us-west-1" || "us-west-2" || "eu-west-1" || "eu-west-2" || "eu-west-3" || "eu-central-1" || "eu-central-2" || "ap-east-1" || "me-south-1" || "us-gov-west-1" || "us-gov-east-1" || "us-iso-east-1" || "us-iso-west-1" || "us-isob-east-1" || "me-central-1" || "ap-southeast-1" || "ap-southeast-2" || "ap-southeast-3" || "ap-south-1" || "ap-south-2" || "ap-northeast-1" || "ap-northeast-2" || "ap-northeast-3" || "eu-north-1" || "sa-east-1" || "ca-central-1" || "cn-north-1" || "cn-northwest-1" || "af-south-1" || "eu-south-1" || "eu-south-2" || "ap-southeast-4" || "il-central-1" || "ca-west-1" || "ap-southeast-5" || "mx-central-1" || "us-isof-south-1" || "us-isof-east-1" || "ap-southeast-7" || "ap-east-2" || "eu-isoe-west-1" || "ap-southeast-6" || "us-isob-west-1" || "eusc-de-east-1", * // VPCId: "STRING_VALUE", * // }, * // ], * // }; * * ``` * * @param GetHostedZoneCommandInput - {@link GetHostedZoneCommandInput} * @returns {@link GetHostedZoneCommandOutput} * @see {@link GetHostedZoneCommandInput} for command's `input` shape. * @see {@link GetHostedZoneCommandOutput} 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 NoSuchHostedZone} (client fault) *

No hosted zone exists with the ID that you specified.

* * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* * * @example To get information about a hosted zone * ```javascript * // The following example gets information about the Z3M3LMPEXAMPLE hosted zone. * const input = { * Id: "Z3M3LMPEXAMPLE" * }; * const command = new GetHostedZoneCommand(input); * const response = await client.send(command); * /* response is * { * DelegationSet: { * NameServers: [ * "ns-2048.awsdns-64.com", * "ns-2049.awsdns-65.net", * "ns-2050.awsdns-66.org", * "ns-2051.awsdns-67.co.uk" * ] * }, * HostedZone: { * CallerReference: "C741617D-04E4-F8DE-B9D7-0D150FC61C2E", * Config: { * PrivateZone: false * }, * Id: "/hostedzone/Z3M3LMPEXAMPLE", * Name: "myawsbucket.com.", * ResourceRecordSetCount: 8 * } * } * *\/ * ``` * * @public */ export declare class GetHostedZoneCommand extends GetHostedZoneCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: GetHostedZoneRequest; output: GetHostedZoneResponse; }; sdk: { input: GetHostedZoneCommandInput; output: GetHostedZoneCommandOutput; }; }; }