:doc:`RedshiftServerless <../../redshift-serverless>` / Paginator / ListTracks

**********
ListTracks
**********



.. py:class:: RedshiftServerless.Paginator.ListTracks

  ::

    
    paginator = client.get_paginator('list_tracks')

  
  

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

    Creates an iterator that will paginate through responses from :py:meth:`RedshiftServerless.Client.list_tracks`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/redshift-serverless-2021-04-21/ListTracks>`_    


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :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**

      
      ::

        {
            'tracks': [
                {
                    'trackName': 'string',
                    'updateTargets': [
                        {
                            'trackName': 'string',
                            'workgroupVersion': 'string'
                        },
                    ],
                    'workgroupVersion': 'string'
                },
            ],
            'NextToken': 'string'
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **tracks** *(list) --* 

          The returned tracks.

          
          

          - *(dict) --* 

            Defines a track that determines which Amazon Redshift version to apply after a new version is released. If the value for ``ServerlessTrack`` is ``current``, the workgroup is updated to the most recently certified release. If the value is ``trailing``, the workgroup is updated to the previously certified release.

            
            

            - **trackName** *(string) --* 

              The name of the track. Valid values are ``current`` and ``trailing``.

              
            

            - **updateTargets** *(list) --* 

              An array of ``UpdateTarget`` objects to update with the track.

              
              

              - *(dict) --* 

                A track that you can switch the current track to.

                
                

                - **trackName** *(string) --* 

                  The name of the new track.

                  
                

                - **workgroupVersion** *(string) --* 

                  The workgroup version for the new track.

                  
            
          
            

            - **workgroupVersion** *(string) --* 

              The workgroup version number for the workgroup release.

              
        
      
        

        - **NextToken** *(string) --* 

          A token to resume pagination.

          
    