Select your cookie preferences

We use cookies and similar tools to enhance your experience, provide our services, deliver relevant advertising, and make improvements. Approved third parties also use these tools to help us deliver advertising and provide certain site features.

ListPrices

class Route53Domains.Paginator.ListPrices
paginator = client.get_paginator('list_prices')
paginate(**kwargs)

Creates an iterator that will paginate through responses from Route53Domains.Client.list_prices().

See also: AWS API Documentation

Request Syntax

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

    The TLD for which you want to receive the pricing information. For example. .net .

    If a Tld value is not provided, a list of prices for all TLDs supported by Route 53 is returned.

  • 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

{
    'Prices': [
        {
            'Name': 'string',
            'RegistrationPrice': {
                'Price': 123.0,
                'Currency': 'string'
            },
            'TransferPrice': {
                'Price': 123.0,
                'Currency': 'string'
            },
            'RenewalPrice': {
                'Price': 123.0,
                'Currency': 'string'
            },
            'ChangeOwnershipPrice': {
                'Price': 123.0,
                'Currency': 'string'
            },
            'RestorationPrice': {
                'Price': 123.0,
                'Currency': 'string'
            }
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    • Prices (list) --

      A complex type that includes all the pricing information. If you specify a TLD, this array contains only the pricing for that TLD.

      • (dict) --

        Information about the domain price associated with a TLD.

        • Name (string) --

          The name of the TLD for which the prices apply.

        • RegistrationPrice (dict) --

          The price for domain registration with Route 53.

          • Price (float) --

            The price of a domain, in a specific currency.

          • Currency (string) --

            The currency specifier.

        • TransferPrice (dict) --

          The price for transferring the domain registration to Route 53.

          • Price (float) --

            The price of a domain, in a specific currency.

          • Currency (string) --

            The currency specifier.

        • RenewalPrice (dict) --

          The price for renewing domain registration with Route 53.

          • Price (float) --

            The price of a domain, in a specific currency.

          • Currency (string) --

            The currency specifier.

        • ChangeOwnershipPrice (dict) --

          The price for changing domain ownership.

          • Price (float) --

            The price of a domain, in a specific currency.

          • Currency (string) --

            The currency specifier.

        • RestorationPrice (dict) --

          The price for restoring the domain with Route 53.

          • Price (float) --

            The price of a domain, in a specific currency.

          • Currency (string) --

            The currency specifier.

    • NextToken (string) --

      A token to resume pagination.