UNPKG

lambda-live-debugger

Version:

Debug Lambda functions locally like it is running in the cloud

24 lines (23 loc) 995 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 { ChangePasswordRequestFilterSensitiveLog } from "../models/models_0"; import { de_ChangePasswordCommand, se_ChangePasswordCommand } from "../protocols/Aws_query"; export { $Command }; export class ChangePasswordCommand extends $Command .classBuilder() .ep(commonParams) .m(function (Command, cs, config, o) { return [ getSerdePlugin(config, this.serialize, this.deserialize), getEndpointPlugin(config, Command.getEndpointParameterInstructions()), ]; }) .s("AWSIdentityManagementV20100508", "ChangePassword", {}) .n("IAMClient", "ChangePasswordCommand") .f(ChangePasswordRequestFilterSensitiveLog, void 0) .ser(se_ChangePasswordCommand) .de(de_ChangePasswordCommand) .build() { }