Skip to main content

presigned_mlflow_tracking_server_urls

Creates, updates, deletes, gets or lists a presigned_mlflow_tracking_server_urls resource.

Overview

Namepresigned_mlflow_tracking_server_urls
TypeResource
Idaws.sagemaker.presigned_mlflow_tracking_server_urls

Fields

The following fields are returned by SELECT queries:

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
create_presigned_mlflow_tracking_server_urlinsertregion, TrackingServerNameReturns 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.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

INSERT examples

Returns 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.

INSERT INTO aws.sagemaker.presigned_mlflow_tracking_server_urls (
TrackingServerName,
ExpiresInSeconds,
SessionExpirationDurationInSeconds,
region
)
SELECT
'{{ TrackingServerName }}' /* required */,
{{ ExpiresInSeconds }},
{{ SessionExpirationDurationInSeconds }},
'{{ region }}'
RETURNING
authorized_url
;