@aws-sdk/client-route-53
Version:
AWS SDK for JavaScript Route 53 Client for Node.js, Browser and React Native
21 lines (20 loc) • 799 B
JavaScript
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 { UpdateHostedZoneFeatures$ } from "../schemas/schemas_0";
export { $Command };
export class UpdateHostedZoneFeaturesCommand extends $Command
.classBuilder()
.ep(commonParams)
.m(function (Command, cs, config, o) {
return [
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
getIdNormalizerPlugin(config),
];
})
.s("AWSDnsV20130401", "UpdateHostedZoneFeatures", {})
.n("Route53Client", "UpdateHostedZoneFeaturesCommand")
.sc(UpdateHostedZoneFeatures$)
.build() {
}