UNPKG

@aws-sdk/client-route-53

Version:

AWS SDK for JavaScript Route 53 Client for Node.js, Browser and React Native

21 lines (20 loc) 794 B
import { getIdNormalizerPlugin } from "@aws-sdk/middleware-sdk-route53"; import { Command as $Command } from "@smithy/core/client"; import { getEndpointPlugin } from "@smithy/core/endpoints"; import { commonParams } from "../endpoint/EndpointParameters"; import { UpdateHostedZoneComment$ } from "../schemas/schemas_0"; export { $Command }; export class UpdateHostedZoneCommentCommand extends $Command .classBuilder() .ep(commonParams) .m(function (Command, cs, config, o) { return [ getEndpointPlugin(config, Command.getEndpointParameterInstructions()), getIdNormalizerPlugin(config), ]; }) .s("AWSDnsV20130401", "UpdateHostedZoneComment", {}) .n("Route53Client", "UpdateHostedZoneCommentCommand") .sc(UpdateHostedZoneComment$) .build() { }