aws.emr_serverless.get_dashboard_for_job_run
Example SQL Queries
SELECT * FROMaws.emr_serverless.get_dashboard_for_job_runWHERE"application_id" = 'VALUE'AND "job_run_id" = 'VALUE';Description
Creates and returns a URL that you can use to access the application UIs for a job run.
For jobs in a running state, the application UI is a live user interface such as the Spark or Tez web UI. For completed jobs, the application UI is a persistent application user interface such as the Spark History Server or persistent Tez UI.
The URL is valid for one hour after you generate it. To access the application UI after that hour elapses, you must invoke the API again to generate a new URL.
Table Definition
| Column Name | Column Data Type |
|---|---|
| application_id Required Input Column The ID of the application. | VARCHAR |
| job_run_id Required Input Column The ID of the job run. | VARCHAR |
| attempt Input Column An optimal parameter that indicates the amount of attempts for the job. If not specified, this value defaults to the attempt of the latest job. | BIGINT |
| _aws_profile Input Column The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( |
Show child fields
| |
| _aws_region Input Column The AWS region to use. | VARCHAR |
| url The URL to view job run's dashboard. | VARCHAR |