Skip to content

ListFunctions

Source: src/AWS/Lambda/ListFunctions.ts

Runtime binding for lambda:ListFunctions.

An account-level binding — call it with no arguments to get a callable that lists function configurations in the region. Provide the ListFunctionsHttp layer on the Function to satisfy the binding.

const listFunctions = yield* AWS.Lambda.ListFunctions();
const response = yield* listFunctions({ MaxItems: 50 });
const names = response.Functions?.map((f) => f.FunctionName);