Values_1.CreatePresignedMlflowAppUrlRequestSourceReturns a presigned URL that you can use to connect to the MLflow UI attached to your MLflow App. For more information, see Launch the MLflow UI using a presigned URL.
type nonrec t = {arn : MlflowAppArn.t;The ARN of the MLflow App 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 presigned URL is valid. The presigned URL can be used only once.
*)}val make :
?expiresInSeconds:??? ->
?sessionExpirationDurationInSeconds:??? ->
arn:MlflowAppArn.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Integer of ExpiresInSeconds.t | `String of MlflowAppArn.t ])
list ]