:doc:`FraudDetector <../../frauddetector>` / Client / get_lists_metadata

******************
get_lists_metadata
******************



.. py:method:: FraudDetector.Client.get_lists_metadata(**kwargs)

  

  Gets the metadata of either all the lists under the account or the specified list.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/frauddetector-2019-11-15/GetListsMetadata>`_  


  **Request Syntax**
  ::

    response = client.get_lists_metadata(
        name='string',
        nextToken='string',
        maxResults=123
    )
    
  :type name: string
  :param name: 

    The name of the list.

    

  
  :type nextToken: string
  :param nextToken: 

    The next token for the subsequent request.

    

  
  :type maxResults: integer
  :param maxResults: 

    The maximum number of objects to return for the request.

    

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

    
    ::

      {
          'lists': [
              {
                  'name': 'string',
                  'description': 'string',
                  'variableType': 'string',
                  'createdTime': 'string',
                  'updatedTime': 'string',
                  'arn': 'string'
              },
          ],
          'nextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **lists** *(list) --* 

        The metadata of the specified list or all lists under the account.

        
        

        - *(dict) --* 

          The metadata of a list.

          
          

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

            The name of the list.

            
          

          - **description** *(string) --* 

            The description of the list.

            
          

          - **variableType** *(string) --* 

            The variable type of the list.

            
          

          - **createdTime** *(string) --* 

            The time the list was created.

            
          

          - **updatedTime** *(string) --* 

            The time the list was last updated.

            
          

          - **arn** *(string) --* 

            The ARN of the list.

            
      
    
      

      - **nextToken** *(string) --* 

        The next page token.

        
  
  **Exceptions**
  
  *   :py:class:`FraudDetector.Client.exceptions.ValidationException`

  
  *   :py:class:`FraudDetector.Client.exceptions.ResourceNotFoundException`

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

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

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

  