:doc:`SageMaker <../../sagemaker>` / Client / list_mlflow_tracking_servers

****************************
list_mlflow_tracking_servers
****************************



.. py:method:: SageMaker.Client.list_mlflow_tracking_servers(**kwargs)

  

  Lists all MLflow Tracking Servers.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListMlflowTrackingServers>`_  


  **Request Syntax**
  ::

    response = client.list_mlflow_tracking_servers(
        CreatedAfter=datetime(2015, 1, 1),
        CreatedBefore=datetime(2015, 1, 1),
        TrackingServerStatus='Creating'|'Created'|'CreateFailed'|'Updating'|'Updated'|'UpdateFailed'|'Deleting'|'DeleteFailed'|'Stopping'|'Stopped'|'StopFailed'|'Starting'|'Started'|'StartFailed'|'MaintenanceInProgress'|'MaintenanceComplete'|'MaintenanceFailed',
        MlflowVersion='string',
        SortBy='Name'|'CreationTime'|'Status',
        SortOrder='Ascending'|'Descending',
        NextToken='string',
        MaxResults=123
    )
    
  :type CreatedAfter: datetime
  :param CreatedAfter: 

    Use the ``CreatedAfter`` filter to only list tracking servers created after a specific date and time. Listed tracking servers are shown with a date and time such as ``"2024-03-16T01:46:56+00:00"``. The ``CreatedAfter`` parameter takes in a Unix timestamp. To convert a date and time into a Unix timestamp, see `EpochConverter <https://www.epochconverter.com/>`__.

    

  
  :type CreatedBefore: datetime
  :param CreatedBefore: 

    Use the ``CreatedBefore`` filter to only list tracking servers created before a specific date and time. Listed tracking servers are shown with a date and time such as ``"2024-03-16T01:46:56+00:00"``. The ``CreatedBefore`` parameter takes in a Unix timestamp. To convert a date and time into a Unix timestamp, see `EpochConverter <https://www.epochconverter.com/>`__.

    

  
  :type TrackingServerStatus: string
  :param TrackingServerStatus: 

    Filter for tracking servers with a specified creation status.

    

  
  :type MlflowVersion: string
  :param MlflowVersion: 

    Filter for tracking servers using the specified MLflow version.

    

  
  :type SortBy: string
  :param SortBy: 

    Filter for trackings servers sorting by name, creation time, or creation status.

    

  
  :type SortOrder: string
  :param SortOrder: 

    Change the order of the listed tracking servers. By default, tracking servers are listed in ``Descending`` order by creation time. To change the list order, you can specify ``SortOrder`` to be ``Ascending``.

    

  
  :type NextToken: string
  :param NextToken: 

    If the previous response was truncated, you will receive this token. Use it in your next request to receive the next set of results.

    

  
  :type MaxResults: integer
  :param MaxResults: 

    The maximum number of tracking servers to list.

    

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

    
    ::

      {
          'TrackingServerSummaries': [
              {
                  'TrackingServerArn': 'string',
                  'TrackingServerName': 'string',
                  'CreationTime': datetime(2015, 1, 1),
                  'LastModifiedTime': datetime(2015, 1, 1),
                  'TrackingServerStatus': 'Creating'|'Created'|'CreateFailed'|'Updating'|'Updated'|'UpdateFailed'|'Deleting'|'DeleteFailed'|'Stopping'|'Stopped'|'StopFailed'|'Starting'|'Started'|'StartFailed'|'MaintenanceInProgress'|'MaintenanceComplete'|'MaintenanceFailed',
                  'IsActive': 'Active'|'Inactive',
                  'MlflowVersion': 'string'
              },
          ],
          'NextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **TrackingServerSummaries** *(list) --* 

        A list of tracking servers according to chosen filters.

        
        

        - *(dict) --* 

          The summary of the tracking server to list.

          
          

          - **TrackingServerArn** *(string) --* 

            The ARN of a listed tracking server.

            
          

          - **TrackingServerName** *(string) --* 

            The name of a listed tracking server.

            
          

          - **CreationTime** *(datetime) --* 

            The creation time of a listed tracking server.

            
          

          - **LastModifiedTime** *(datetime) --* 

            The last modified time of a listed tracking server.

            
          

          - **TrackingServerStatus** *(string) --* 

            The creation status of a listed tracking server.

            
          

          - **IsActive** *(string) --* 

            The activity status of a listed tracking server.

            
          

          - **MlflowVersion** *(string) --* 

            The MLflow version used for a listed tracking server.

            
      
    
      

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

        If the previous response was truncated, you will receive this token. Use it in your next request to receive the next set of results.

        
  