List Mlflow Apps
| sagemaker_list_mlflow_apps | R Documentation |
Lists all MLflow Apps¶
Description¶
Lists all MLflow Apps
Usage¶
sagemaker_list_mlflow_apps(CreatedAfter, CreatedBefore, Status,
MlflowVersion, DefaultForDomainId, AccountDefaultStatus, SortBy,
SortOrder, NextToken, MaxResults)
Arguments¶
CreatedAfter |
Use the |
CreatedBefore |
Use the |
Status |
Filter for Mlflow apps with a specific creation status. |
MlflowVersion |
Filter for Mlflow Apps with the specified version. |
DefaultForDomainId |
Filter for MLflow Apps with the specified default SageMaker Domain ID. |
AccountDefaultStatus |
Filter for MLflow Apps with the specified
|
SortBy |
Filter for MLflow Apps sorting by name, creation time, or creation status. |
SortOrder |
Change the order of the listed MLflow Apps. By default, MLflow
Apps are listed in |
NextToken |
If the previous response was truncated, use this token in your next request to receive the next set of results. |
MaxResults |
The maximum number of MLflow Apps to list. |
Value¶
A list with the following syntax:
list(
Summaries = list(
list(
Arn = "string",
Name = "string",
Status = "Creating"|"Created"|"CreateFailed"|"Updating"|"Updated"|"UpdateFailed"|"Deleting"|"DeleteFailed"|"Deleted",
CreationTime = as.POSIXct(
"2015-01-01"
),
LastModifiedTime = as.POSIXct(
"2015-01-01"
),
MlflowVersion = "string"
)
),
NextToken = "string"
)
Request syntax¶
svc$list_mlflow_apps(
CreatedAfter = as.POSIXct(
"2015-01-01"
),
CreatedBefore = as.POSIXct(
"2015-01-01"
),
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
)