account_limits
Creates, updates, deletes, gets or lists an account_limits resource.
Overview
| Name | account_limits |
| Type | Resource |
| Id | aws.elbv2.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. |
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 Amazon Web Services account. For more information, see the following: Quotas for your Application Load Balancers Quotas for your Network Load Balancers Quotas for your Gateway Load Balancers |
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 Amazon Web Services account. For more information, see the following: Quotas for your Application Load Balancers Quotas for your Network Load Balancers Quotas for your Gateway Load Balancers
SELECT
max,
name
FROM aws.elbv2.account_limits
WHERE region = '{{ region }}' -- required
AND Marker = '{{ Marker }}'
AND PageSize = '{{ PageSize }}'
;