:doc:`S3Tables <../../s3tables>` / Paginator / ListTables

**********
ListTables
**********



.. py:class:: S3Tables.Paginator.ListTables

  ::

    
    paginator = client.get_paginator('list_tables')

  
  

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

    Creates an iterator that will paginate through responses from :py:meth:`S3Tables.Client.list_tables`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/ListTables>`_    


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          tableBucketARN='string',
          namespace='string',
          prefix='string',
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type tableBucketARN: string
    :param tableBucketARN: **[REQUIRED]** 

      The Amazon resource Name (ARN) of the table bucket.

      

    
    :type namespace: string
    :param namespace: 

      The namespace of the tables.

      

    
    :type prefix: string
    :param prefix: 

      The prefix of the tables.

      

    
    :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**

      
      ::

        {
            'tables': [
                {
                    'namespace': [
                        'string',
                    ],
                    'name': 'string',
                    'type': 'customer'|'aws',
                    'tableARN': 'string',
                    'createdAt': datetime(2015, 1, 1),
                    'modifiedAt': datetime(2015, 1, 1),
                    'managedByService': 'string',
                    'namespaceId': 'string',
                    'tableBucketId': 'string'
                },
            ],
            'NextToken': 'string'
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **tables** *(list) --* 

          A list of tables.

          
          

          - *(dict) --* 

            Contains details about a table.

            
            

            - **namespace** *(list) --* 

              The name of the namespace.

              
              

              - *(string) --* 
          
            

            - **name** *(string) --* 

              The name of the table.

              
            

            - **type** *(string) --* 

              The type of the table.

              
            

            - **tableARN** *(string) --* 

              The Amazon Resource Name (ARN) of the table.

              
            

            - **createdAt** *(datetime) --* 

              The date and time the table was created at.

              
            

            - **modifiedAt** *(datetime) --* 

              The date and time the table was last modified at.

              
            

            - **managedByService** *(string) --* 

              The Amazon Web Services service managing this table, if applicable. For example, a replicated table is managed by the S3 Tables replication service.

              
            

            - **namespaceId** *(string) --* 

              The unique identifier for the namespace that contains this table.

              
            

            - **tableBucketId** *(string) --* 

              The unique identifier for the table bucket that contains this table.

              
        
      
        

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

          A token to resume pagination.

          
    