Skip to content

Update Mlflow App

sagemaker_update_mlflow_app R Documentation

Updates an MLflow App

Description

Updates an MLflow App.

Usage

sagemaker_update_mlflow_app(Arn, Name, ArtifactStoreUri,
  ModelRegistrationMode, WeeklyMaintenanceWindowStart,
  DefaultDomainIdList, AccountDefaultStatus)

Arguments

Arn

[required] The ARN of the MLflow App to update.

Name

The name of the MLflow App to update.

ArtifactStoreUri

The new S3 URI for the general purpose bucket to use as the artifact store for the MLflow App.

ModelRegistrationMode

Whether to enable or disable automatic registration of new MLflow models to the SageMaker Model Registry. To enable automatic model registration, set this value to AutoModelRegistrationEnabled. To disable automatic model registration, set this value to AutoModelRegistrationDisabled. If not specified, AutomaticModelRegistration defaults to AutoModelRegistrationEnabled

WeeklyMaintenanceWindowStart

The new weekly maintenance window start day and time to update. The maintenance window day and time should be in Coordinated Universal Time (UTC) 24-hour standard time. For example: TUE:03:30.

DefaultDomainIdList

List of SageMaker Domain IDs for which this MLflow App is the default.

AccountDefaultStatus

Indicates whether this this MLflow App is the default for the account.

Value

A list with the following syntax:

list(
  Arn = "string"
)

Request syntax

svc$update_mlflow_app(
  Arn = "string",
  Name = "string",
  ArtifactStoreUri = "string",
  ModelRegistrationMode = "AutoModelRegistrationEnabled"|"AutoModelRegistrationDisabled",
  WeeklyMaintenanceWindowStart = "string",
  DefaultDomainIdList = list(
    "string"
  ),
  AccountDefaultStatus = "ENABLED"|"DISABLED"
)