@aws-sdk/client-lambda
Version:
AWS SDK for JavaScript Lambda Client for Node.js, Browser and React Native
52 lines (51 loc) • 1.78 kB
TypeScript
import { Command as $Command } from "@smithy/smithy-client";
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
import {
LambdaClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes,
} from "../LambdaClient";
import {
PutFunctionCodeSigningConfigRequest,
PutFunctionCodeSigningConfigResponse,
} from "../models/models_0";
export { __MetadataBearer };
export { $Command };
export interface PutFunctionCodeSigningConfigCommandInput
extends PutFunctionCodeSigningConfigRequest {}
export interface PutFunctionCodeSigningConfigCommandOutput
extends PutFunctionCodeSigningConfigResponse,
__MetadataBearer {}
declare const PutFunctionCodeSigningConfigCommand_base: {
new (
input: PutFunctionCodeSigningConfigCommandInput
): import("@smithy/smithy-client").CommandImpl<
PutFunctionCodeSigningConfigCommandInput,
PutFunctionCodeSigningConfigCommandOutput,
LambdaClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes
>;
new (
input: PutFunctionCodeSigningConfigCommandInput
): import("@smithy/smithy-client").CommandImpl<
PutFunctionCodeSigningConfigCommandInput,
PutFunctionCodeSigningConfigCommandOutput,
LambdaClientResolvedConfig,
ServiceInputTypes,
ServiceOutputTypes
>;
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
};
export declare class PutFunctionCodeSigningConfigCommand extends PutFunctionCodeSigningConfigCommand_base {
protected static __types: {
api: {
input: PutFunctionCodeSigningConfigRequest;
output: PutFunctionCodeSigningConfigResponse;
};
sdk: {
input: PutFunctionCodeSigningConfigCommandInput;
output: PutFunctionCodeSigningConfigCommandOutput;
};
};
}