Skip to content

GetAccountSettings

Source: src/AWS/Lambda/GetAccountSettings.ts

Runtime binding for lambda:GetAccountSettings.

An account-level binding — call it with no arguments to get a callable that reads the region’s Lambda quotas (AccountLimit) and current usage (AccountUsage). Provide the GetAccountSettingsHttp layer on the Function to satisfy the binding.

const getAccountSettings = yield* AWS.Lambda.GetAccountSettings();
const settings = yield* getAccountSettings();
const concurrency = settings.AccountLimit?.ConcurrentExecutions;