Skip to content

Describe Mlflow App

sagemaker_describe_mlflow_app R Documentation

Returns information about an MLflow App

Description

Returns information about an MLflow App.

Usage

sagemaker_describe_mlflow_app(Arn)

Arguments

Arn

[required] The ARN of the MLflow App for which to get information.

Value

A list with the following syntax:

list(
  Arn = "string",
  Name = "string",
  ArtifactStoreUri = "string",
  MlflowVersion = "string",
  RoleArn = "string",
  Status = "Creating"|"Created"|"CreateFailed"|"Updating"|"Updated"|"UpdateFailed"|"Deleting"|"DeleteFailed"|"Deleted",
  ModelRegistrationMode = "AutoModelRegistrationEnabled"|"AutoModelRegistrationDisabled",
  AccountDefaultStatus = "ENABLED"|"DISABLED",
  DefaultDomainIdList = list(
    "string"
  ),
  CreationTime = as.POSIXct(
    "2015-01-01"
  ),
  CreatedBy = list(
    UserProfileArn = "string",
    UserProfileName = "string",
    DomainId = "string",
    IamIdentity = list(
      Arn = "string",
      PrincipalId = "string",
      SourceIdentity = "string"
    )
  ),
  LastModifiedTime = as.POSIXct(
    "2015-01-01"
  ),
  LastModifiedBy = list(
    UserProfileArn = "string",
    UserProfileName = "string",
    DomainId = "string",
    IamIdentity = list(
      Arn = "string",
      PrincipalId = "string",
      SourceIdentity = "string"
    )
  ),
  WeeklyMaintenanceWindowStart = "string",
  MaintenanceStatus = "MaintenanceInProgress"|"MaintenanceComplete"|"MaintenanceFailed"
)

Request syntax

svc$describe_mlflow_app(
  Arn = "string"
)