@aws-sdk/client-route-53
Version:
AWS SDK for JavaScript Route 53 Client for Node.js, Browser and React Native
46 lines (45 loc) • 1.35 kB
TypeScript
import { Command as $Command } from "@smithy/core/client";
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
import { GetChangeRequest, GetChangeResponse } from "../models/models_0";
import {
Route53ClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes,
} from "../Route53Client";
export { __MetadataBearer };
export { $Command };
export interface GetChangeCommandInput extends GetChangeRequest {}
export interface GetChangeCommandOutput
extends GetChangeResponse,
__MetadataBearer {}
declare const GetChangeCommand_base: {
new (input: GetChangeCommandInput): import("@smithy/core/client").CommandImpl<
GetChangeCommandInput,
GetChangeCommandOutput,
Route53ClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes
>;
new (input: GetChangeCommandInput): import("@smithy/core/client").CommandImpl<
GetChangeCommandInput,
GetChangeCommandOutput,
Route53ClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes
>;
getEndpointParameterInstructions(): {
[x: string]: unknown;
};
};
export declare class GetChangeCommand extends GetChangeCommand_base {
protected static __types: {
api: {
input: GetChangeRequest;
output: GetChangeResponse;
};
sdk: {
input: GetChangeCommandInput;
output: GetChangeCommandOutput;
};
};
}