UNPKG

cdk-amazon-chime-resources

Version:

![Experimental](https://img.shields.io/badge/experimental-important.svg?style=for-the-badge)

46 lines (45 loc) 2.12 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.BatchSuspendUserCommand = void 0; const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint"); const middleware_serde_1 = require("@aws-sdk/middleware-serde"); const smithy_client_1 = require("@aws-sdk/smithy-client"); const Aws_restJson1_1 = require("../protocols/Aws_restJson1"); class BatchSuspendUserCommand extends smithy_client_1.Command { static getEndpointParameterInstructions() { return { UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" }, Endpoint: { type: "builtInParams", name: "endpoint" }, Region: { type: "builtInParams", name: "region" }, UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" }, }; } constructor(input) { super(); this.input = input; } resolveMiddleware(clientStack, configuration, options) { this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize)); this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, BatchSuspendUserCommand.getEndpointParameterInstructions())); const stack = clientStack.concat(this.middlewareStack); const { logger } = configuration; const clientName = "ChimeClient"; const commandName = "BatchSuspendUserCommand"; const handlerExecutionContext = { logger, clientName, commandName, inputFilterSensitiveLog: (_) => _, outputFilterSensitiveLog: (_) => _, }; const { requestHandler } = configuration; return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext); } serialize(input, context) { return (0, Aws_restJson1_1.se_BatchSuspendUserCommand)(input, context); } deserialize(output, context) { return (0, Aws_restJson1_1.de_BatchSuspendUserCommand)(output, context); } } exports.BatchSuspendUserCommand = BatchSuspendUserCommand;