account_settings
Creates, updates, deletes, gets or lists an account_settings resource.
Overview
| Name | account_settings |
| Type | Resource |
| Id | aws.lambda.account_settings |
Fields
The following fields are returned by SELECT queries:
- get_account_settings
| Name | Datatype | Description |
|---|---|---|
account_limit | object | Limits that are related to concurrency and code storage. |
account_usage | object | The number of functions and amount of storage in use. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_account_settings | select | region | Retrieves 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_account_settings
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
;