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