:doc:`Route53Domains <../../route53domains>` / Paginator / ListPrices

**********
ListPrices
**********



.. py:class:: Route53Domains.Paginator.ListPrices

  ::

    
    paginator = client.get_paginator('list_prices')

  
  

  .. py:method:: paginate(**kwargs)

    Creates an iterator that will paginate through responses from :py:meth:`Route53Domains.Client.list_prices`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/ListPrices>`_    


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          Tld='string',
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type Tld: string
    :param Tld: 

      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.

      

    
    :type PaginationConfig: dict
    :param PaginationConfig: 

      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.

        

      
    
    
    :rtype: 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.

          
    