:doc:`Textract <../../textract>` / Client / list_adapters

*************
list_adapters
*************



.. py:method:: Textract.Client.list_adapters(**kwargs)

  

  Lists all adapters that match the specified filtration criteria.

  

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


  **Request Syntax**
  ::

    response = client.list_adapters(
        AfterCreationTime=datetime(2015, 1, 1),
        BeforeCreationTime=datetime(2015, 1, 1),
        MaxResults=123,
        NextToken='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 MaxResults: integer
  :param MaxResults: 

    The maximum number of results to return when listing adapters.

    

  
  :type NextToken: string
  :param NextToken: 

    Identifies the next page of results to return when listing adapters.

    

  
  
  :rtype: dict
  :returns: 
    
    **Response Syntax**

    
    ::

      {
          'Adapters': [
              {
                  'AdapterId': 'string',
                  'AdapterName': 'string',
                  'CreationTime': datetime(2015, 1, 1),
                  'FeatureTypes': [
                      'TABLES'|'FORMS'|'QUERIES'|'SIGNATURES'|'LAYOUT',
                  ]
              },
          ],
          'NextToken': 'string'
      }
      
    **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) --* 
        
      
    
      

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

        Identifies the next page of results to return when listing adapters.

        
  
  **Exceptions**
  
  *   :py:class:`Textract.Client.exceptions.InvalidParameterException`

  
  *   :py:class:`Textract.Client.exceptions.AccessDeniedException`

  
  *   :py:class:`Textract.Client.exceptions.ProvisionedThroughputExceededException`

  
  *   :py:class:`Textract.Client.exceptions.InternalServerError`

  
  *   :py:class:`Textract.Client.exceptions.ThrottlingException`

  
  *   :py:class:`Textract.Client.exceptions.ValidationException`

  