SageMaker / Client / list_mlflow_tracking_servers

list_mlflow_tracking_servers#

SageMaker.Client.list_mlflow_tracking_servers(**kwargs)#

Lists all MLflow Tracking Servers.

See also: AWS API Documentation

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

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

  • TrackingServerStatus (string) – Filter for tracking servers with a specified creation status.

  • MlflowVersion (string) – Filter for tracking servers using the specified MLflow version.

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

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

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

  • MaxResults (integer) – The maximum number of tracking servers to list.

Return type:

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.