Describe Mlflow Tracking Server
sagemaker_describe_mlflow_tracking_server | R Documentation |
Returns information about an MLflow Tracking Server¶
Description¶
Returns information about an MLflow Tracking Server.
Usage¶
Arguments¶
TrackingServerName
[required] The name of the MLflow Tracking Server to describe.
Value¶
A list with the following syntax:
list(
TrackingServerArn = "string",
TrackingServerName = "string",
ArtifactStoreUri = "string",
TrackingServerSize = "Small"|"Medium"|"Large",
MlflowVersion = "string",
RoleArn = "string",
TrackingServerStatus = "Creating"|"Created"|"CreateFailed"|"Updating"|"Updated"|"UpdateFailed"|"Deleting"|"DeleteFailed"|"Stopping"|"Stopped"|"StopFailed"|"Starting"|"Started"|"StartFailed"|"MaintenanceInProgress"|"MaintenanceComplete"|"MaintenanceFailed",
IsActive = "Active"|"Inactive",
TrackingServerUrl = "string",
WeeklyMaintenanceWindowStart = "string",
AutomaticModelRegistration = TRUE|FALSE,
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"
)
)
)