@aws-sdk/client-route-53
Version:
AWS SDK for JavaScript Route 53 Client for Node.js, Browser and React Native
25 lines (24 loc) • 1.06 kB
JavaScript
import { getIdNormalizerPlugin } from "@aws-sdk/middleware-sdk-route53";
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
import { getSerdePlugin } from "@smithy/middleware-serde";
import { Command as $Command } from "@smithy/smithy-client";
import { commonParams } from "../endpoint/EndpointParameters";
import { de_CreateQueryLoggingConfigCommand, se_CreateQueryLoggingConfigCommand } from "../protocols/Aws_restXml";
export { $Command };
export class CreateQueryLoggingConfigCommand extends $Command
.classBuilder()
.ep(commonParams)
.m(function (Command, cs, config, o) {
return [
getSerdePlugin(config, this.serialize, this.deserialize),
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
getIdNormalizerPlugin(config),
];
})
.s("AWSDnsV20130401", "CreateQueryLoggingConfig", {})
.n("Route53Client", "CreateQueryLoggingConfigCommand")
.f(void 0, void 0)
.ser(se_CreateQueryLoggingConfigCommand)
.de(de_CreateQueryLoggingConfigCommand)
.build() {
}