UNPKG

@aws-sdk/client-lambda

Version:

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

68 lines (67 loc) 3.23 kB
import { Command as $Command } from "@smithy/smithy-client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; import { DeleteLayerVersionRequest } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DeleteLayerVersionCommand}. */ export interface DeleteLayerVersionCommandInput extends DeleteLayerVersionRequest { } /** * @public * * The output of {@link DeleteLayerVersionCommand}. */ export interface DeleteLayerVersionCommandOutput extends __MetadataBearer { } declare const DeleteLayerVersionCommand_base: { new (input: DeleteLayerVersionCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteLayerVersionCommandInput, DeleteLayerVersionCommandOutput, LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>; new (__0_0: DeleteLayerVersionCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteLayerVersionCommandInput, DeleteLayerVersionCommandOutput, LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** * <p>Deletes a version of an <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html">Lambda * layer</a>. Deleted versions can no longer be viewed or added to functions. To avoid * breaking functions, a copy of the version remains in Lambda until no functions refer to it.</p> * @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { LambdaClient, DeleteLayerVersionCommand } from "@aws-sdk/client-lambda"; // ES Modules import * // const { LambdaClient, DeleteLayerVersionCommand } = require("@aws-sdk/client-lambda"); // CommonJS import * const client = new LambdaClient(config); * const input = { // DeleteLayerVersionRequest * LayerName: "STRING_VALUE", // required * VersionNumber: Number("long"), // required * }; * const command = new DeleteLayerVersionCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param DeleteLayerVersionCommandInput - {@link DeleteLayerVersionCommandInput} * @returns {@link DeleteLayerVersionCommandOutput} * @see {@link DeleteLayerVersionCommandInput} for command's `input` shape. * @see {@link DeleteLayerVersionCommandOutput} for command's `response` shape. * @see {@link LambdaClientResolvedConfig | config} for LambdaClient's `config` shape. * * @throws {@link ServiceException} (server fault) * <p>The Lambda service encountered an internal error.</p> * * @throws {@link TooManyRequestsException} (client fault) * <p>The request throughput limit was exceeded. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/gettingstarted-limits.html#api-requests">Lambda quotas</a>.</p> * * @throws {@link LambdaServiceException} * <p>Base exception class for all service exceptions from Lambda service.</p> * * @public */ export declare class DeleteLayerVersionCommand extends DeleteLayerVersionCommand_base { }