Skip to main content

account_limits

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

Overview

Nameaccount_limits
TypeResource
Idaws.elb.account_limits

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
maxstringThe maximum value of the limit.
namestringThe 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:

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

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