DescribeAccountLimits

class ElasticLoadBalancingv2.Paginator.DescribeAccountLimits
paginator = client.get_paginator('describe_account_limits')
paginate(**kwargs)

Creates an iterator that will paginate through responses from ElasticLoadBalancingv2.Client.describe_account_limits().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters
PaginationConfig (dict) --

A dictionary that provides parameters to control pagination.

  • MaxItems (integer) --

    The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

  • PageSize (integer) --

    The size of each page.

  • StartingToken (string) --

    A token to specify where to start paginating. This is the NextToken from a previous response.

Return type
dict
Returns
Response Syntax
{
    'Limits': [
        {
            'Name': 'string',
            'Max': 'string'
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --
    • Limits (list) --

      Information about the limits.

      • (dict) --

        Information about an Elastic Load Balancing resource limit for your Amazon Web Services account.

        • Name (string) --

          The name of the limit. The possible values are:

          • application-load-balancers
          • condition-values-per-alb-rule
          • condition-wildcards-per-alb-rule
          • gateway-load-balancers
          • gateway-load-balancers-per-vpc
          • geneve-target-groups
          • listeners-per-application-load-balancer
          • listeners-per-network-load-balancer
          • network-load-balancers
          • rules-per-application-load-balancer
          • target-groups
          • target-groups-per-action-on-application-load-balancer
          • target-groups-per-action-on-network-load-balancer
          • target-groups-per-application-load-balancer
          • targets-per-application-load-balancer
          • targets-per-availability-zone-per-gateway-load-balancer
          • targets-per-availability-zone-per-network-load-balancer
          • targets-per-network-load-balancer
        • Max (string) --

          The maximum value of the limit.

    • NextToken (string) --

      A token to resume pagination.