Creates an MLflow Tracking Server using a general purpose Amazon S3 bucket as the artifact store
Source:R/sagemaker_operations.R
sagemaker_create_mlflow_app.RdCreates an MLflow Tracking Server using a general purpose Amazon S3 bucket as the artifact store.
See https://www.paws-r-sdk.com/docs/sagemaker_create_mlflow_app/ for full documentation.
Usage
sagemaker_create_mlflow_app(
Name,
ArtifactStoreUri,
RoleArn,
ModelRegistrationMode = NULL,
WeeklyMaintenanceWindowStart = NULL,
AccountDefaultStatus = NULL,
DefaultDomainIdList = NULL,
Tags = NULL
)Arguments
- Name
[required] A string identifying the MLflow app name. This string is not part of the tracking server ARN.
- ArtifactStoreUri
[required] The S3 URI for a general purpose bucket to use as the MLflow App artifact store.
- RoleArn
[required] The Amazon Resource Name (ARN) for an IAM role in your account that the MLflow App uses to access the artifact store in Amazon S3. The role should have the
AmazonS3FullAccesspermission.- 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 toAutoModelRegistrationDisabled. If not specified,AutomaticModelRegistrationdefaults toAutoModelRegistrationDisabled.- WeeklyMaintenanceWindowStart
The day and time of the week in Coordinated Universal Time (UTC) 24-hour standard time that weekly maintenance updates are scheduled. For example: TUE:03:30.
- AccountDefaultStatus
Indicates whether this MLflow app is the default for the entire account.
- DefaultDomainIdList
List of SageMaker domain IDs for which this MLflow App is used as the default.
Tags consisting of key-value pairs used to manage metadata for the MLflow App.