APIGateway / Client / get_usage_plans

get_usage_plans#

APIGateway.Client.get_usage_plans(**kwargs)#

Gets all the usage plans of the caller’s account.

See also: AWS API Documentation

Request Syntax

response = client.get_usage_plans(
    position='string',
    keyId='string',
    limit=123
)
Parameters:
  • position (string) – The current pagination position in the paged result set.

  • keyId (string) – The identifier of the API key associated with the usage plans.

  • limit (integer) – The maximum number of returned results per page. The default value is 25 and the maximum value is 500.

Return type:

dict

Returns:

Response Syntax

{
    'position': 'string',
    'items': [
        {
            'id': 'string',
            'name': 'string',
            'description': 'string',
            'apiStages': [
                {
                    'apiId': 'string',
                    'stage': 'string',
                    'throttle': {
                        'string': {
                            'burstLimit': 123,
                            'rateLimit': 123.0
                        }
                    }
                },
            ],
            'throttle': {
                'burstLimit': 123,
                'rateLimit': 123.0
            },
            'quota': {
                'limit': 123,
                'offset': 123,
                'period': 'DAY'|'WEEK'|'MONTH'
            },
            'productCode': 'string',
            'tags': {
                'string': 'string'
            }
        },
    ]
}

Response Structure

  • (dict) –

    Represents a collection of usage plans for an AWS account.

    • position (string) –

    • items (list) –

      The current page of elements from this collection.

      • (dict) –

        Represents a usage plan used to specify who can assess associated API stages. Optionally, target request rate and quota limits can be set. In some cases clients can exceed the targets that you set. Don’t rely on usage plans to control costs. Consider using Amazon Web Services Budgets to monitor costs and WAF to manage API requests.

        • id (string) –

          The identifier of a UsagePlan resource.

        • name (string) –

          The name of a usage plan.

        • description (string) –

          The description of a usage plan.

        • apiStages (list) –

          The associated API stages of a usage plan.

          • (dict) –

            API stage name of the associated API stage in a usage plan.

            • apiId (string) –

              API Id of the associated API stage in a usage plan.

            • stage (string) –

              API stage name of the associated API stage in a usage plan.

            • throttle (dict) –

              Map containing method level throttling information for API stage in a usage plan.

              • (string) –

                • (dict) –

                  The API request rate limits.

                  • burstLimit (integer) –

                    The API target request burst rate limit. This allows more requests through for a period of time than the target rate limit.

                  • rateLimit (float) –

                    The API target request rate limit.

        • throttle (dict) –

          A map containing method level throttling information for API stage in a usage plan.

          • burstLimit (integer) –

            The API target request burst rate limit. This allows more requests through for a period of time than the target rate limit.

          • rateLimit (float) –

            The API target request rate limit.

        • quota (dict) –

          The target maximum number of permitted requests per a given unit time interval.

          • limit (integer) –

            The target maximum number of requests that can be made in a given time period.

          • offset (integer) –

            The number of requests subtracted from the given limit in the initial time period.

          • period (string) –

            The time period in which the limit applies. Valid values are “DAY”, “WEEK” or “MONTH”.

        • productCode (string) –

          The Amazon Web Services Marketplace product identifier to associate with the usage plan as a SaaS product on the Amazon Web Services Marketplace.

        • tags (dict) –

          The collection of tags. Each tag element is associated with a given resource.

          • (string) –

            • (string) –

Exceptions