Skip to main content

presigned_mlflow_app_urls

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

Overview

Namepresigned_mlflow_app_urls
TypeResource
Idaws.sagemaker.presigned_mlflow_app_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_app_urlinsertregion, ArnReturns 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.

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 MLflow App. For more information, see Launch the MLflow UI using a presigned URL.

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