presigned_mlflow_app_urls
Creates, updates, deletes, gets or lists a presigned_mlflow_app_urls resource.
Overview
| Name | presigned_mlflow_app_urls |
| Type | Resource |
| Id | aws.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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
create_presigned_mlflow_app_url | insert | region, Arn | 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. |
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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
INSERT examples
- create_presigned_mlflow_app_url
- Manifest
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
;
# Description fields are for documentation purposes
- name: presigned_mlflow_app_urls
props:
- name: region
value: "{{ region }}"
description: Required parameter for the presigned_mlflow_app_urls resource.
- name: Arn
value: "{{ Arn }}"
description: |
The ARN of the MLflow App to connect to your MLflow UI.
- name: ExpiresInSeconds
value: {{ ExpiresInSeconds }}
description: |
The duration in seconds that your presigned URL is valid. The presigned URL can be used only once.
- name: SessionExpirationDurationInSeconds
value: {{ SessionExpirationDurationInSeconds }}
description: |
The duration in seconds that your presigned URL is valid. The presigned URL can be used only once.