Jump to Content

This API Documentation is now deprecated

We are excited to announce our new API Documentation.

Class ListFunctionsByCodeSigningConfigCommandProtected

List the functions that use the specified code signing configuration. You can use this method prior to deleting a code signing configuration, to verify that no functions are using it.

Example

Use a bare-bones client and the command you need to make an API call.

import { LambdaClient, ListFunctionsByCodeSigningConfigCommand } from "@aws-sdk/client-lambda"; // ES Modules import
// const { LambdaClient, ListFunctionsByCodeSigningConfigCommand } = require("@aws-sdk/client-lambda"); // CommonJS import
const client = new LambdaClient(config);
const input = { // ListFunctionsByCodeSigningConfigRequest
CodeSigningConfigArn: "STRING_VALUE", // required
Marker: "STRING_VALUE",
MaxItems: Number("int"),
};
const command = new ListFunctionsByCodeSigningConfigCommand(input);
const response = await client.send(command);
// { // ListFunctionsByCodeSigningConfigResponse
// NextMarker: "STRING_VALUE",
// FunctionArns: [ // FunctionArnList
// "STRING_VALUE",
// ],
// };

Param

ListFunctionsByCodeSigningConfigCommandInput

Returns

ListFunctionsByCodeSigningConfigCommandOutput

See

Throws

InvalidParameterValueException (client fault)

One of the parameters in the request is not valid.

Throws

ResourceNotFoundException (client fault)

The resource specified in the request does not exist.

Throws

ServiceException (server fault)

The Lambda service encountered an internal error.

Throws

LambdaServiceException

Base exception class for all service exceptions from Lambda service.

Hierarchy

Constructors

Properties

Methods

Constructors

Properties

Methods