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

****************
list_mlflow_apps
****************



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

  

  Lists all MLflow Apps

  

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


  **Request Syntax**
  ::

    response = client.list_mlflow_apps(
        CreatedAfter=datetime(2015, 1, 1),
        CreatedBefore=datetime(2015, 1, 1),
        Status='Creating'|'Created'|'CreateFailed'|'Updating'|'Updated'|'UpdateFailed'|'Deleting'|'DeleteFailed'|'Deleted',
        MlflowVersion='string',
        DefaultForDomainId='string',
        AccountDefaultStatus='ENABLED'|'DISABLED',
        SortBy='Name'|'CreationTime'|'Status',
        SortOrder='Ascending'|'Descending',
        NextToken='string',
        MaxResults=123
    )
    
  :type CreatedAfter: datetime
  :param CreatedAfter: 

    Use the ``CreatedAfter`` filter to only list MLflow Apps created after a specific date and time. Listed MLflow Apps are shown with a date and time such as ``"2024-03-16T01:46:56+00:00"``. The ``CreatedAfter`` parameter takes in a Unix timestamp.

    

  
  :type CreatedBefore: datetime
  :param CreatedBefore: 

    Use the ``CreatedBefore`` filter to only list MLflow Apps created before a specific date and time. Listed MLflow Apps are shown with a date and time such as ``"2024-03-16T01:46:56+00:00"``. The ``CreatedAfter`` parameter takes in a Unix timestamp.

    

  
  :type Status: string
  :param Status: 

    Filter for Mlflow apps with a specific creation status.

    

  
  :type MlflowVersion: string
  :param MlflowVersion: 

    Filter for Mlflow Apps with the specified version.

    

  
  :type DefaultForDomainId: string
  :param DefaultForDomainId: 

    Filter for MLflow Apps with the specified default SageMaker Domain ID.

    

  
  :type AccountDefaultStatus: string
  :param AccountDefaultStatus: 

    Filter for MLflow Apps with the specified ``AccountDefaultStatus``.

    

  
  :type SortBy: string
  :param SortBy: 

    Filter for MLflow Apps sorting by name, creation time, or creation status.

    

  
  :type SortOrder: string
  :param SortOrder: 

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

    

  
  :type NextToken: string
  :param NextToken: 

    If the previous response was truncated, use this token in your next request to receive the next set of results.

    

  
  :type MaxResults: integer
  :param MaxResults: 

    The maximum number of MLflow Apps to list.

    

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

    
    ::

      {
          'Summaries': [
              {
                  'Arn': 'string',
                  'Name': 'string',
                  'Status': 'Creating'|'Created'|'CreateFailed'|'Updating'|'Updated'|'UpdateFailed'|'Deleting'|'DeleteFailed'|'Deleted',
                  'CreationTime': datetime(2015, 1, 1),
                  'LastModifiedTime': datetime(2015, 1, 1),
                  'MlflowVersion': 'string'
              },
          ],
          'NextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **Summaries** *(list) --* 

        A list of MLflow Apps according to chosen filters.

        
        

        - *(dict) --* 

          The summary of the Mlflow App to list.

          
          

          - **Arn** *(string) --* 

            The ARN of a listed MLflow App.

            
          

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

            The name of the MLflow App.

            
          

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

            The status of the MLflow App.

            
          

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

            The creation time of a listed MLflow App.

            
          

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

            The last modified time of a listed MLflow App.

            
          

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

            The version of a listed MLflow App.

            
      
    
      

      - **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.

        
  