UNPKG

@aws-sdk/client-route-53

Version:

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

23 lines (22 loc) 910 B
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_GetHealthCheckCountCommand, se_GetHealthCheckCountCommand } from "../protocols/Aws_restXml"; export { $Command }; export class GetHealthCheckCountCommand extends $Command .classBuilder() .ep(commonParams) .m(function (Command, cs, config, o) { return [ getSerdePlugin(config, this.serialize, this.deserialize), getEndpointPlugin(config, Command.getEndpointParameterInstructions()), ]; }) .s("AWSDnsV20130401", "GetHealthCheckCount", {}) .n("Route53Client", "GetHealthCheckCountCommand") .f(void 0, void 0) .ser(se_GetHealthCheckCountCommand) .de(de_GetHealthCheckCountCommand) .build() { }