Skip to main content

account_settings

Creates, updates, deletes, gets or lists an account_settings resource.

Overview

Nameaccount_settings
TypeResource
Idaws.lambda.account_settings

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
account_limitobjectLimits that are related to concurrency and code storage.
account_usageobjectThe number of functions and amount of storage in use.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_account_settingsselectregionRetrieves details about your account's limits and usage in an Amazon Web Services Region.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Retrieves details about your account's limits and usage in an Amazon Web Services Region.

SELECT
account_limit,
account_usage
FROM aws.lambda.account_settings
WHERE region = '{{ region }}' -- required
;