:doc:`Comprehend <../../comprehend>` / Client / list_entity_recognizer_summaries

********************************
list_entity_recognizer_summaries
********************************



.. py:method:: Comprehend.Client.list_entity_recognizer_summaries(**kwargs)

  

  Gets a list of summaries for the entity recognizers that you have created.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/comprehend-2017-11-27/ListEntityRecognizerSummaries>`_  


  **Request Syntax**
  ::

    response = client.list_entity_recognizer_summaries(
        NextToken='string',
        MaxResults=123
    )
    
  :type NextToken: string
  :param NextToken: 

    Identifies the next page of results to return.

    

  
  :type MaxResults: integer
  :param MaxResults: 

    The maximum number of results to return on each page. The default is 100.

    

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

    
    ::

      {
          'EntityRecognizerSummariesList': [
              {
                  'RecognizerName': 'string',
                  'NumberOfVersions': 123,
                  'LatestVersionCreatedAt': datetime(2015, 1, 1),
                  'LatestVersionName': 'string',
                  'LatestVersionStatus': 'SUBMITTED'|'TRAINING'|'DELETING'|'STOP_REQUESTED'|'STOPPED'|'IN_ERROR'|'TRAINED'|'TRAINED_WITH_WARNING'
              },
          ],
          'NextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **EntityRecognizerSummariesList** *(list) --* 

        The list entity recognizer summaries.

        
        

        - *(dict) --* 

          Describes the information about an entity recognizer and its versions.

          
          

          - **RecognizerName** *(string) --* 

            The name that you assigned the entity recognizer.

            
          

          - **NumberOfVersions** *(integer) --* 

            The number of versions you created.

            
          

          - **LatestVersionCreatedAt** *(datetime) --* 

            The time that the latest entity recognizer version was submitted for processing.

            
          

          - **LatestVersionName** *(string) --* 

            The version name you assigned to the latest entity recognizer version.

            
          

          - **LatestVersionStatus** *(string) --* 

            Provides the status of the latest entity recognizer version.

            
      
    
      

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

        Identifies the next page of results to return.

        
  
  **Exceptions**
  
  *   :py:class:`Comprehend.Client.exceptions.InvalidRequestException`

  
  *   :py:class:`Comprehend.Client.exceptions.TooManyRequestsException`

  
  *   :py:class:`Comprehend.Client.exceptions.InternalServerException`

  