:doc:`Textract <../../textract>` / Paginator / ListAdapters

************
ListAdapters
************



.. py:class:: Textract.Paginator.ListAdapters

  ::

    
    paginator = client.get_paginator('list_adapters')

  
  

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

    Creates an iterator that will paginate through responses from :py:meth:`Textract.Client.list_adapters`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/textract-2018-06-27/ListAdapters>`_    


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          AfterCreationTime=datetime(2015, 1, 1),
          BeforeCreationTime=datetime(2015, 1, 1),
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type AfterCreationTime: datetime
    :param AfterCreationTime: 

      Specifies the lower bound for the ListAdapters operation. Ensures ListAdapters returns only adapters created after the specified creation time.

      

    
    :type BeforeCreationTime: datetime
    :param BeforeCreationTime: 

      Specifies the upper bound for the ListAdapters operation. Ensures ListAdapters returns only adapters created before the specified creation time.

      

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

      
      ::

        {
            'Adapters': [
                {
                    'AdapterId': 'string',
                    'AdapterName': 'string',
                    'CreationTime': datetime(2015, 1, 1),
                    'FeatureTypes': [
                        'TABLES'|'FORMS'|'QUERIES'|'SIGNATURES'|'LAYOUT',
                    ]
                },
            ],
            
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **Adapters** *(list) --* 

          A list of adapters that matches the filtering criteria specified when calling ListAdapters.

          
          

          - *(dict) --* 

            Contains information on the adapter, including the adapter ID, Name, Creation time, and feature types.

            
            

            - **AdapterId** *(string) --* 

              A unique identifier for the adapter resource.

              
            

            - **AdapterName** *(string) --* 

              A string naming the adapter resource.

              
            

            - **CreationTime** *(datetime) --* 

              The date and time that the adapter was created.

              
            

            - **FeatureTypes** *(list) --* 

              The feature types that the adapter is operating on.

              
              

              - *(string) --* 
          
        
      
    