:doc:`ControlTower <../../controltower>` / Client / list_baselines

**************
list_baselines
**************



.. py:method:: ControlTower.Client.list_baselines(**kwargs)

  

  Returns a summary list of all available baselines. For usage examples, see `the Amazon Web Services Control Tower User Guide <https://docs.aws.amazon.com/controltower/latest/userguide/baseline-api-examples.html>`__.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/controltower-2018-05-10/ListBaselines>`_  


  **Request Syntax**
  ::

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

    A pagination token.

    

  
  :type maxResults: integer
  :param maxResults: 

    The maximum number of results to be shown.

    

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

    
    ::

      {
          'baselines': [
              {
                  'arn': 'string',
                  'name': 'string',
                  'description': 'string'
              },
          ],
          'nextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **baselines** *(list) --* 

        A list of ``Baseline`` object details.

        
        

        - *(dict) --* 

          Returns a summary of information about a ``Baseline`` object.

          
          

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

            The full ARN of a Baseline.

            
          

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

            The human-readable name of a Baseline.

            
          

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

            A summary description of a Baseline.

            
      
    
      

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

        A pagination token.

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

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

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

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

  