account_limits
Creates, updates, deletes, gets or lists an account_limits resource.
Overview
| Name | account_limits |
| Type | Resource |
| Id | aws.elb.account_limits |
Fields
The following fields are returned by SELECT queries:
- describe_account_limits
| Name | Datatype | Description |
|---|---|---|
max | string | The maximum value of the limit. |
name | string | The name of the limit. The possible values are: classic-listeners classic-load-balancers classic-registered-instances |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_account_limits | select | region | Marker, PageSize | Describes the current Elastic Load Balancing resource limits for your AWS account. For more information, see Limits for Your Classic Load Balancer in the Classic Load Balancers 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) |
Marker | string | The marker for the next set of results. (You received this marker from a previous call.) |
PageSize | integer | The maximum number of results to return with this call. |
SELECT examples
- describe_account_limits
Describes the current Elastic Load Balancing resource limits for your AWS account. For more information, see Limits for Your Classic Load Balancer in the Classic Load Balancers Guide.
SELECT
max,
name
FROM aws.elb.account_limits
WHERE region = '{{ region }}' -- required
AND Marker = '{{ Marker }}'
AND PageSize = '{{ PageSize }}'
;