52 lines
2.5 KiB
JavaScript
52 lines
2.5 KiB
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.PutFunctionCodeSigningConfigCommand = exports.$Command = void 0;
|
|
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
const types_1 = require("@smithy/types");
|
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
class PutFunctionCodeSigningConfigCommand 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, PutFunctionCodeSigningConfigCommand.getEndpointParameterInstructions()));
|
|
const stack = clientStack.concat(this.middlewareStack);
|
|
const { logger } = configuration;
|
|
const clientName = "LambdaClient";
|
|
const commandName = "PutFunctionCodeSigningConfigCommand";
|
|
const handlerExecutionContext = {
|
|
logger,
|
|
clientName,
|
|
commandName,
|
|
inputFilterSensitiveLog: (_) => _,
|
|
outputFilterSensitiveLog: (_) => _,
|
|
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
service: "AWSGirApiService",
|
|
operation: "PutFunctionCodeSigningConfig",
|
|
},
|
|
};
|
|
const { requestHandler } = configuration;
|
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
}
|
|
serialize(input, context) {
|
|
return (0, Aws_restJson1_1.se_PutFunctionCodeSigningConfigCommand)(input, context);
|
|
}
|
|
deserialize(output, context) {
|
|
return (0, Aws_restJson1_1.de_PutFunctionCodeSigningConfigCommand)(output, context);
|
|
}
|
|
}
|
|
exports.PutFunctionCodeSigningConfigCommand = PutFunctionCodeSigningConfigCommand;
|