Lists all MLflow Tracking Servers
Source:R/sagemaker_operations.R
sagemaker_list_mlflow_tracking_servers.RdLists all MLflow Tracking Servers.
See https://www.paws-r-sdk.com/docs/sagemaker_list_mlflow_tracking_servers/ for full documentation.
Usage
sagemaker_list_mlflow_tracking_servers(
CreatedAfter = NULL,
CreatedBefore = NULL,
TrackingServerStatus = NULL,
MlflowVersion = NULL,
SortBy = NULL,
SortOrder = NULL,
NextToken = NULL,
MaxResults = NULL
)Arguments
- CreatedAfter
Use the
CreatedAfterfilter 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". TheCreatedAfterparameter takes in a Unix timestamp. To convert a date and time into a Unix timestamp, see EpochConverter.- CreatedBefore
Use the
CreatedBeforefilter 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". TheCreatedBeforeparameter takes in a Unix timestamp. To convert a date and time into a Unix timestamp, see EpochConverter.- TrackingServerStatus
Filter for tracking servers with a specified creation status.
- MlflowVersion
Filter for tracking servers using the specified MLflow version.
- SortBy
Filter for trackings servers sorting by name, creation time, or creation status.
- SortOrder
Change the order of the listed tracking servers. By default, tracking servers are listed in
Descendingorder by creation time. To change the list order, you can specifySortOrderto beAscending.- 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.
- MaxResults
The maximum number of tracking servers to list.