SageMaker / Client / list_mlflow_apps

list_mlflow_apps

SageMaker.Client.list_mlflow_apps(**kwargs)

Lists all MLflow Apps

See also: AWS API Documentation

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
)
Parameters:
  • CreatedAfter (datetime) – 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.

  • CreatedBefore (datetime) – 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.

  • Status (string) – Filter for Mlflow apps with a specific creation status.

  • MlflowVersion (string) – Filter for Mlflow Apps with the specified version.

  • DefaultForDomainId (string) – Filter for MLflow Apps with the specified default SageMaker Domain ID.

  • AccountDefaultStatus (string) – Filter for MLflow Apps with the specified AccountDefaultStatus.

  • SortBy (string) – Filter for MLflow Apps sorting by name, creation time, or creation status.

  • SortOrder (string) – 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.

  • NextToken (string) – If the previous response was truncated, use this token in your next request to receive the next set of results.

  • MaxResults (integer) – The maximum number of MLflow Apps to list.

Return type:

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.