:doc:`CloudWatchRUM <../../rum>` / Client / list_app_monitors

*****************
list_app_monitors
*****************



.. py:method:: CloudWatchRUM.Client.list_app_monitors(**kwargs)

  

  Returns a list of the Amazon CloudWatch RUM app monitors in the account.

  

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


  **Request Syntax**
  ::

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

    The maximum number of results to return in one operation. The default is 50. The maximum that you can specify is 100.

    

  
  :type NextToken: string
  :param NextToken: 

    Use the token returned by the previous operation to request the next page of results.

    

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

    
    ::

      {
          'NextToken': 'string',
          'AppMonitorSummaries': [
              {
                  'Name': 'string',
                  'Id': 'string',
                  'Created': 'string',
                  'LastModified': 'string',
                  'State': 'CREATED'|'DELETING'|'ACTIVE',
                  'Platform': 'Web'|'Android'|'iOS'
              },
          ]
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

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

        A token that you can use in a subsequent operation to retrieve the next set of results.

        
      

      - **AppMonitorSummaries** *(list) --* 

        An array of structures that contain information about the returned app monitors.

        
        

        - *(dict) --* 

          A structure that includes some data about app monitors and their settings.

          
          

          - **Name** *(string) --* 

            The name of this app monitor.

            
          

          - **Id** *(string) --* 

            The unique ID of this app monitor.

            
          

          - **Created** *(string) --* 

            The date and time that the app monitor was created.

            
          

          - **LastModified** *(string) --* 

            The date and time of the most recent changes to this app monitor's configuration.

            
          

          - **State** *(string) --* 

            The current state of this app monitor.

            
          

          - **Platform** *(string) --* 

            The platform type for this app monitor. Valid values are ``Web`` for web applications, ``Android`` for Android applications, and ``iOS`` for IOS applications.

            
      
    
  
  **Exceptions**
  
  *   :py:class:`CloudWatchRUM.Client.exceptions.InternalServerException`

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

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

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

  