account_limits
Creates, updates, deletes, gets or lists an account_limits resource.
Overview
| Name | account_limits |
| Type | Resource |
| Id | aws.autoscaling.account_limits |
Fields
The following fields are returned by SELECT queries:
- describe_account_limits
| Name | Datatype | Description |
|---|---|---|
max_number_of_auto_scaling_groups | integer | The maximum number of groups allowed for your account. The default is 200 groups per Region. |
max_number_of_launch_configurations | integer | The maximum number of launch configurations allowed for your account. The default is 200 launch configurations per Region. |
number_of_auto_scaling_groups | integer | The current number of groups for your account. |
number_of_launch_configurations | integer | The current number of launch configurations for your account. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_account_limits | select | region | Describes the current Amazon EC2 Auto Scaling resource quotas for your account. When you establish an Amazon Web Services account, the account has initial quotas on the maximum number of Auto Scaling groups and launch configurations that you can create in a given Region. For more information, see Quotas for Amazon EC2 Auto Scaling in the Amazon EC2 Auto Scaling User Guide. |
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
- describe_account_limits
Describes the current Amazon EC2 Auto Scaling resource quotas for your account. When you establish an Amazon Web Services account, the account has initial quotas on the maximum number of Auto Scaling groups and launch configurations that you can create in a given Region. For more information, see Quotas for Amazon EC2 Auto Scaling in the Amazon EC2 Auto Scaling User Guide.
SELECT
max_number_of_auto_scaling_groups,
max_number_of_launch_configurations,
number_of_auto_scaling_groups,
number_of_launch_configurations
FROM aws.autoscaling.account_limits
WHERE region = '{{ region }}' -- required
;