Skip to content

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

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

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

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 Descending order by creation time. To change the list order, specify SortOrder to be Ascending.

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
)