List Mlflow Tracking Servers
sagemaker_list_mlflow_tracking_servers | R Documentation |
Lists all MLflow Tracking Servers¶
Description¶
Lists all MLflow Tracking Servers.
Usage¶
sagemaker_list_mlflow_tracking_servers(CreatedAfter, CreatedBefore,
TrackingServerStatus, MlflowVersion, SortBy, SortOrder, NextToken,
MaxResults)
Arguments¶
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"
. TheCreatedAfter
parameter takes in a Unix timestamp. To convert a date and time into a Unix timestamp, see EpochConverter.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"
. TheCreatedBefore
parameter 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
Descending
order by creation time. To change the list order, you can specifySortOrder
to 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.
Value¶
A list with the following syntax:
list(
TrackingServerSummaries = list(
list(
TrackingServerArn = "string",
TrackingServerName = "string",
CreationTime = as.POSIXct(
"2015-01-01"
),
LastModifiedTime = as.POSIXct(
"2015-01-01"
),
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"
)
Request syntax¶
svc$list_mlflow_tracking_servers(
CreatedAfter = as.POSIXct(
"2015-01-01"
),
CreatedBefore = as.POSIXct(
"2015-01-01"
),
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
)