@aws-sdk/client-route-53
Version:
AWS SDK for JavaScript Route 53 Client for Node.js, Browser and React Native
51 lines (50 loc) • 1.49 kB
TypeScript
import { Command as $Command } from "@smithy/smithy-client";
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
import {
GetHostedZoneRequest,
GetHostedZoneResponse,
} from "../models/models_0";
import {
Route53ClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes,
} from "../Route53Client";
export { __MetadataBearer };
export { $Command };
export interface GetHostedZoneCommandInput extends GetHostedZoneRequest {}
export interface GetHostedZoneCommandOutput
extends GetHostedZoneResponse,
__MetadataBearer {}
declare const GetHostedZoneCommand_base: {
new (
input: GetHostedZoneCommandInput
): import("@smithy/smithy-client").CommandImpl<
GetHostedZoneCommandInput,
GetHostedZoneCommandOutput,
Route53ClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes
>;
new (
__0_0: GetHostedZoneCommandInput
): import("@smithy/smithy-client").CommandImpl<
GetHostedZoneCommandInput,
GetHostedZoneCommandOutput,
Route53ClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes
>;
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
};
export declare class GetHostedZoneCommand extends GetHostedZoneCommand_base {
protected static __types: {
api: {
input: GetHostedZoneRequest;
output: GetHostedZoneResponse;
};
sdk: {
input: GetHostedZoneCommandInput;
output: GetHostedZoneCommandOutput;
};
};
}