dashboard_urls
Creates, updates, deletes, gets or lists a dashboard_urls resource.
Overview
| Name | dashboard_urls |
| Type | Resource |
| Id | aws.glue.dashboard_urls |
Fields
The following fields are returned by SELECT queries:
- get_dashboard_url
| Name | Datatype | Description |
|---|---|---|
url | string | The URL for the Spark monitoring dashboard. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_dashboard_url | select | region | Retrieves the URL for the Spark monitoring dashboard for a Glue resource. |
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) |
SELECT examples
- get_dashboard_url
Retrieves the URL for the Spark monitoring dashboard for a Glue resource.
SELECT
url
FROM aws.glue.dashboard_urls
WHERE region = '{{ region }}' -- required
;