Values_1.CreatePresignedMlflowTrackingServerUrlRequestSourceReturns a presigned URL that you can use to connect to the MLflow UI attached to your tracking server. For more information, see Launch the MLflow UI using a presigned URL.
type nonrec t = {trackingServerName : TrackingServerName.t;The name of the tracking server to connect to your MLflow UI.
*)expiresInSeconds : ExpiresInSeconds.t option;The duration in seconds that your presigned URL is valid. The presigned URL can be used only once.
*)sessionExpirationDurationInSeconds : SessionExpirationDurationInSeconds.t
option;The duration in seconds that your MLflow UI session is valid.
*)}val make :
?expiresInSeconds:??? ->
?sessionExpirationDurationInSeconds:??? ->
trackingServerName:TrackingServerName.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Integer of ExpiresInSeconds.t | `String of TrackingServerName.t ])
list ]