Skip to main content

account_limits

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

Overview

Nameaccount_limits
TypeResource
Idaws.elbv2.account_limits

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
maxstringThe maximum value of the limit.
namestringThe name of the limit.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_account_limitsselectregionMarker, PageSizeDescribes 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)
MarkerstringThe marker for the next set of results. (You received this marker from a previous call.)
PageSizeintegerThe maximum number of results to return with this call.

SELECT examples

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 }}'
;