:doc:`Glue <../../glue>` / Client / list_registries

***************
list_registries
***************



.. py:method:: Glue.Client.list_registries(**kwargs)

  

  Returns a list of registries that you have created, with minimal registry information. Registries in the ``Deleting`` status will not be included in the results. Empty results will be returned if there are no registries available.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ListRegistries>`_  


  **Request Syntax**
  ::

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

    Maximum number of results required per page. If the value is not supplied, this will be defaulted to 25 per page.

    

  
  :type NextToken: string
  :param NextToken: 

    A continuation token, if this is a continuation call.

    

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

    
    ::

      {
          'Registries': [
              {
                  'RegistryName': 'string',
                  'RegistryArn': 'string',
                  'Description': 'string',
                  'Status': 'AVAILABLE'|'DELETING',
                  'CreatedTime': 'string',
                  'UpdatedTime': 'string'
              },
          ],
          'NextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **Registries** *(list) --* 

        An array of ``RegistryDetailedListItem`` objects containing minimal details of each registry.

        
        

        - *(dict) --* 

          A structure containing the details for a registry.

          
          

          - **RegistryName** *(string) --* 

            The name of the registry.

            
          

          - **RegistryArn** *(string) --* 

            The Amazon Resource Name (ARN) of the registry.

            
          

          - **Description** *(string) --* 

            A description of the registry.

            
          

          - **Status** *(string) --* 

            The status of the registry.

            
          

          - **CreatedTime** *(string) --* 

            The data the registry was created.

            
          

          - **UpdatedTime** *(string) --* 

            The date the registry was updated.

            
      
    
      

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

        A continuation token for paginating the returned list of tokens, returned if the current segment of the list is not the last.

        
  
  **Exceptions**
  
  *   :py:class:`Glue.Client.exceptions.InvalidInputException`

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

  
  *   :py:class:`Glue.Client.exceptions.InternalServiceException`

  